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.
我正在尝试使用给定的 makefile 制作/编译wykobi库(计算几何),但我不断收到错误消息:
错误:显式实例化不应使用“内联”说明符 [-fpermissive]
我该如何解决这个问题?
您可以从命令行覆盖在 makefile 中设置的编译器标志:
make OPTIONS_LIBS="-fpermissive -O3 -o" OPTIONS="-fpermissive -O3 -o"