2
0

test.cpp 228 B

1234567891011
  1. /*
  2. # see: https://ossrs.net/lts/zh-cn/docs/v4/doc/arm
  3. arm-linux-gnueabi-g++ -o test test.cpp -static
  4. arm-linux-gnueabi-strip test
  5. */
  6. #include <stdio.h>
  7. int main(int argc, char** argv) {
  8. printf("hello, arm!\n");
  9. return 0;
  10. }