Added some small boring scripts and programs writen in few last years
[mirrors/Programs.git] / c / polymorph / out.txt
1 Because assembly routines from the kernel headers (and most likely your own headers, if you try making your assembly programming as clean as it is in the linux kernel) are embedded in extern inline
2 functions, GCC must be invoked with the -O flag (or -O2, -O3, etc), for these routines to be available. If not, your code may compile, but not link properly, since it will be looking for non-inlined
3 extern functions in the libraries against which your program is being linked! Another way is to link against libraries that include fallback versions of the routines.
4
5 HELLO YOU ;)
6
7 Inline assembly can be disabled with -fno-asm, which will have the compiler die when using extended inline asm syntax, or else generate calls to an external function named asm() that the linker can't
8 resolve. To counter such flag, -fasm restores treatment of the asm keyword HELLOHELLO.
9
10 HELLO YOU ;)
11
12 More generally, good compile flags for GCC on the x86 platform are:
This page took 0.258589 seconds and 4 git commands to generate.