This is a message
warning: no loadable sections found in added symbol-file system-supplied
SO at 0x7ffff7ffd000
- a warning that does not prevent GCC a.out from starting; at least it should not be.
They say that there is a dynamically loaded object that uses a.out , which does not contain characters. Nothing about a.out itself.
You can try building a.out as a static executable; eg:
gcc -static ac
Obviously add any other compiler arguments.
As a static executable, you will not receive this warning from GCC. These characters may still be missing, but this should not affect program execution.
ash
source share