Hi,
we have a new project that requires the usage of the TI ARM Optimizing C/C++ Compiler v18.1.0.LTS
The existing project is provided with a custom C++ runtime support library (libsupc++) and low-level runtime library (libgcc) provided as static libraries, which have to be used and cannot be replaced by the ones provided via the TI ARM C/C++ compiler itself. Therefore, we are currently doing the GCC build with:
-nodefaultlibs
-nostdlib
-fno-builtin
compiler flags set and do the linking to those libraries.
Looking at the TI ARM C/C++ compiler, those flags are not supported.
Hence, the question is if the same effect can be applied via the TI ARM C/C++ compiler by:
- setting the --disable_auto_rts flag
- pointing to the required libraries via the --library flag
and the result would be similar?
- e.g., armcl prog1.c prog2.c prog3.c --disable_auto_rts --run_linker --rom_model --output_file=prog.out --library=libgcc.a --library=libsupc++.a
Thanks for any hint or advice!