Not that I can see, the linker call looks like this (line broken for readability):
arm-none-eabi-g++
-mcpu=cortex-m4
-mthumb
-mfloat-abi=hard
-mfpu=fpv4-sp-d16
-O0
-fmessage-length=0
-fsigned-char
-ffunction-sections
-fdata-sections
-g3
-T "MK64FN1M0xxx12_flash.ld"
-Xlinker --gc-sections
-L
"D:/Development/13214-ELMU/trunk/ETCCode/ELMU_KDS_K64/ELMU_KDS_K64/Project_Settings/Linker_Files" -L
"D:\Development\13214-ELMU\trunk\Freescale\KSDK_1.1.0/lib/ksdk_mqx_lib/kds/K64F12/Debug" -L
"D:\Development\13214-ELMU\trunk\Freescale\KSDK_1.1.0/rtos/mqx/lib/frdmk64f.kds/debug/mqx" -L
"D:\Development\13214-ELMU\trunk\Freescale\KSDK_1.1.0/rtos/mqx/lib/frdmk64f.kds/debug/mqx_stdlib"
-Wl,-Map,"ELMU_KDS_K64.map"
-nanolibc
-o "ELMU_KDS_K64.elf"
./Sources/Utilities/fsl_debug_console.o
./Sources/Board/gpio_pins.o
./Sources/Board/hardware_init.o
./Sources/Board/pin_mux.o
./Sources/BSP_files/init_bsp.o
./Sources/BSP_files/mqx_main.o
./Sources/config.o
./Sources/main_task.o
./Project_Settings/Startup_Code/startup.o
./Project_Settings/Startup_Code/startup_MK64F12.o
./Project_Settings/Startup_Code/system_MK64F12.o
D:/Development/13214-ELMU/trunk/Freescale/KSDK_1.1.0/lib/ksdk_mqx_lib/kds/K64F12/Debug/libksdk_platform_mqx.a
D:/Development/13214-ELMU/trunk/Freescale/KSDK_1.1.0/filesystem/mfs/lib/frdmk64f.kds/debug/mfs/lib_mfs.a
D:/Development/13214-ELMU/trunk/Freescale/KSDK_1.1.0/tcpip/rtcs/lib/frdmk64f.kds/debug/rtcs/lib_rtcs.a
D:/Development/13214-ELMU/trunk/Freescale/KSDK_1.1.0/rtos/mqx/lib/frdmk64f.kds/debug/mqx/lib_mqx.a
D:/Development/13214-ELMU/trunk/Freescale/KSDK_1.1.0/rtos/mqx/lib/frdmk64f.kds/debug/mqx_stdlib/lib_mqx_stdlib.a
-lksdk_platform_mqx
-l_mqx
-l_mqx_stdlib
Would I add that to the command line pattern for the linker? I don't see any built in option to add that call.
Also, for some reason it's defaulting to the Cross ARM C++ Linker as the linker tool, Where it was the Windows ARM Ltd GCC C Linker in Codewarrrior. I can go into the toolchain editor and select tools, but I can't replace it with the Cross ARM C Linker without forcing "Allow all changes". Could this be part of the issue as well?