Search Results

Search results 1-2 of 2.

This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

  • Apologies, I may not have been entirely clear. When using the Additional Linker Options From File option, the build command will result in something like this, where the highlighted items are from the auto-generated file: "(folder)/gcc/arm-none-eabi/bin/ld" -X --omagic -eReset_Handler --defsym=__vfprintf=__vfprintf_int_nwp --defsym=__vfscanf=__vfscanf_int --fatal-warnings -llib1 -llib2 -Lfolderlib1 -Lfolderlib2 -EL --gc-sections -Tproject.map -u_vectors -o project.elf --emit-relocs --start-group…

  • We're using a dependency manager for our CI pipeline as well as swap in hardware modules based on board revisions. This works fine for source files and libraries, but we're struggling on how to properly link to the list of libraries an application is dependent on. We've tried using "Additional Linker Options From File", but that puts -l flags before the object files, which gcc doesn't accept. We'd prefer not to manually add the list of libraries in the project since we don't want upstream depend…