Re: waf examples: how to modify linker flags/how to process generated exe.

2020-11-25 Thread Chris Johns
On 24/11/20 6:03 pm, Sebastian Huber wrote: > a post-link step (for example a transformation of the ELF file into a boot > loader image) is currently not supported by the new build system. For this the > idea is to let the BSP optionally provide a "post-link" command line tool (a > shell script for

Re: waf examples: how to modify linker flags/how to process generated exe.

2020-11-23 Thread Sebastian Huber
Hello Karel, a post-link step (for example a transformation of the ELF file into a boot loader image) is currently not supported by the new build system. For this the idea is to let the BSP optionally provide a "post-link" command line tool (a shell script for example) and then use a mechanism

waf examples: how to modify linker flags/how to process generated exe.

2020-11-23 Thread Karel Gardas
Hello, I'm slowly researching amd64 BSP multiboot domain and I'm curious if it is possible based on waf BSP's options to change either (or both) linker/gcc linking options (E.g. to add -z max-page-size=1000) and or process generated exe by other tool like objcopy (to create elf32 from elf64). M