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 want to run ‘make install’ so I have everything I need, but I’d like it to install the things in their own ...
-
June 3, 2022
- 0 Comments
I understand gcc’s --ffast-math flag can greatly increase speed for float ops, and goes outside of IEEE standards, but I can’t seem to ...
-
June 2, 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
I’m trying to create a hello world project for Linux dynamic libraries (.so files). So I have a file hello.c: #include <stdio.h> void ...
-
June 1, 2022
- 0 Comments
On a Unix system, where does gcc look for header files? I spent a little time this morning looking for some system header ...
-
May 31, 2022
- 0 Comments
My linux (SLES-8) server currently has glibc-2.2.5-235, but I have a program which won’t work on this version and requires glibc-2.3.3. Is it ...
-
May 30, 2022
- 0 Comments