I’m compiling my C++ app using GCC 4.3. Instead of manually selecting the optimization flags I’m using -march=native, which in theory should add ...
-
June 3, 2022
- 0 Comments
I know I can generate debug symbol using -g option. However the symbol is embeded in the target file. Could gcc generate debug ...
-
June 1, 2022
- 0 Comments
When I’m compiling openvswitch-1.5.0, I’ve encountered the following compile error: gcc -Wstrict-prototypes -Wall -Wno-sign-compare -Wpointer-arith -Wdeclaration-after-statement -Wformat-security -Wswitch-enum -Wunused-parameter -Wstrict-aliasing -Wbad-function-cast -Wcast-align -Wstrict-prototypes ...
-
May 23, 2022
- 0 Comments
For convenience I added the relevant manpages below. My (mis)understanding first: If I need to separate options with ,, that means that the ...
-
May 17, 2022
- 0 Comments
I’m trying to debug a compilation problem, but I cannot seem to get GCC (or maybe it is make??) to show me the ...
-
May 11, 2022
- 0 Comments
I’m trying to use GCC (linux) with a makefile to compile my project. I get the following error which is can’t seem to ...
-
May 6, 2022
- 0 Comments