I am trying to make / compile wykobi library (computational geometry) using the given makefile, but I keep getting the error:
error: explicit instantiation shall not use ‘inline’ specifier [-fpermissive]
How can I solve this?
I am trying to make / compile wykobi library (computational geometry) using the given makefile, but I keep getting the error:
error: explicit instantiation shall not use ‘inline’ specifier [-fpermissive]
How can I solve this?
You can override the compiler flags set in the makefile from command line:
make OPTIONS_LIBS="-fpermissive -O3 -o" OPTIONS="-fpermissive -O3 -o"
© 2022 - 2024 — McMap. All rights reserved.
C++
tag to your question. If I was wrong, please feel free to revert. – Stipendinline
. – Sweeper