Posted to tcl by apn at Wed Jun 20 03:20:23 GMT 2018view raw

  1. apn@IO:/mnt/d/src/builds/tarray0.9.0$ cat x.c
  2. inline int inlinefn() {return 0;}
  3. int main() { return inlinefn(); }
  4.  
  5. apn@IO:/mnt/d/src/builds/tarray0.9.0$ gcc -o x x.c
  6. /tmp/ccj5il4u.o: In function `main':
  7. x.c:(.text+0xa): undefined reference to `inlinefn'
  8. collect2: error: ld returned 1 exit status
  9.  
  10. apn@IO:/mnt/d/src/builds/tarray0.9.0$ gcc -std=c99 -o x x.c
  11. /tmp/ccmqRQPN.o: In function `main':
  12. x.c:(.text+0xa): undefined reference to `inlinefn'
  13. collect2: error: ld returned 1 exit status