ali hagigat wrote:
We have the following definition for CC: CC:=gcc -Wa,--divide -fno-stack-protector -Wl,--build-id=none I wonder if any one can explain the options, --divide and --build-id. Thank you.
-Wl,<foo> is a linker option, please look at the ld manpage. Similarily, -Wa,<foo> is an assembler option.
From the ld manpage:
--build-id=style Request creation of ".note.gnu.build-id" ELF note section. The [...]