Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们发现 C 语言在与幻数一起使用时会编译 log 函数,但不会与变量一起使用。有任何想法吗?
因为您没有将程序链接到数学库,并且使用文字,您的编译器可能正在使用内置函数。
使用文字,gcc您将得到相同的错误。-fno-builtin
gcc
-fno-builtin
以这种方式与 lib math 链接:gcc bla.c -o bla -lm
gcc bla.c -o bla -lm
我们发现是因为C编译器的版本。较新的版本似乎更好地支持日志。