测试1.c
#include <stdio.h>
int main(void) {
printf("test\n");
delay(1000);
printf("test2\n");
}
当我尝试编译...
gcc test1.c -o test1
Undefined symbols for architecture x86_64:
"_delay", referenced from:
_main in ccUnw3tY.o
ld: symbol(s) not found for architecture x86_64
collect2: ld returned 1 exit status
当然,了解您的图书馆以及链接是什么等方面有一个教训......我错过了什么?我正在尝试在 OSX 上执行此操作。