This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: Code Composer Studio
Hello.
There are many situations where I cannot see full call stack when I break program execution or catch hw exception, or program is trapped in _exit() or assert().
Problem looks to be identical with following one that is well descibed here:
https://e2e.ti.com/support/development_tools/code_composer_studio/f/81/p/551666/2088665#2088665
Im currently using:
Sitara Cortex A8 AM3357.
Blackhawk USB560v2
CCS7.4 under Linux, and Windows too.
gcc-arm-none-eabi-6-2017-q1-update,
bios_6_51_00_15
xdctools_3_50_00_10_core
However, at the beginning I thought that problem is related to the fact that linking sysbios application neeeds to be made with libc delivered by sysbios.
Yesterday I checked that even simply hello world application without sysbios,(and linked to libc delivered by gcc) have same problem.
I tried with dwarf3 and dwarf4, no difference.
The link I attached above references to CCBT-2049, however I cannot find anything about that. I suppose it is CodeComposer Bug and I should be able to find it in here:
However im not.
Can I ask for some advice ?
Best Regards
Greg.
Hello Ki.
Thank you for your support.
Im attaching two examples. Im using build system that is independent of CCS. So im attaching full build log for both examples. And one screenshoot per example.
First is simple application without sysbios.
goral@srv47rnd1:~/projects/cmpc_cpu_bld$ rm -rf * goral@srv47rnd1:~/projects/cmpc_cpu_bld$ source ../cmpc_cpu/build/generic_am3357_c_hello_world_build.sh -- The C compiler identification is GNU 6.3.1 -- The CXX compiler identification is GNU 6.3.1 -- Check for working C compiler: /home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/arm-none-eabi-gcc -- Check for working C compiler: /home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/arm-none-eabi-gcc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Detecting C compile features -- Detecting C compile features - done -- Check for working CXX compiler: /home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/arm-none-eabi-g++ -- Check for working CXX compiler: /home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/arm-none-eabi-g++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- The ASM compiler identification is GNU -- Found assembler: /home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/arm-none-eabi-gcc -- ############ no project specific settings -- ############ no platform specific settings -- Generating done -- Build files have been written to: /home/goral/projects/cmpc_cpu_bld goral@srv47rnd1:~/projects/cmpc_cpu_bld$ make VERBOSE=1 /usr/bin/cmake -H/home/goral/projects/cmpc_cpu -B/home/goral/projects/cmpc_cpu_bld --check-build-system CMakeFiles/Makefile.cmake 0 /usr/bin/cmake -E cmake_progress_start /home/goral/projects/cmpc_cpu_bld/CMakeFiles /home/goral/projects/cmpc_cpu_bld/CMakeFiles/progress.marks make -f CMakeFiles/Makefile2 all make[1]: Entering directory '/home/goral/projects/cmpc_cpu_bld' make -f platform/Generic_AM3357/CMakeFiles/startup_Generic_AM3357.dir/build.make platform/Generic_AM3357/CMakeFiles/startup_Generic_AM3357.dir/depend make[2]: Entering directory '/home/goral/projects/cmpc_cpu_bld' cd /home/goral/projects/cmpc_cpu_bld && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/goral/projects/cmpc_cpu /home/goral/projects/cmpc_cpu/platform/Generic_AM3357 /home/goral/projects/cmpc_cpu_bld /home/goral/projects/cmpc_cpu_bld/platform/Generic_AM3357 /home/goral/projects/cmpc_cpu_bld/platform/Generic_AM3357/CMakeFiles/startup_Generic_AM3357.dir/DependInfo.cmake --color= Dependee "/home/goral/projects/cmpc_cpu_bld/platform/Generic_AM3357/CMakeFiles/startup_Generic_AM3357.dir/DependInfo.cmake" is newer than depender "/home/goral/projects/cmpc_cpu_bld/platform/Generic_AM3357/CMakeFiles/startup_Generic_AM3357.dir/depend.internal". Dependee "/home/goral/projects/cmpc_cpu_bld/platform/Generic_AM3357/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/home/goral/projects/cmpc_cpu_bld/platform/Generic_AM3357/CMakeFiles/startup_Generic_AM3357.dir/depend.internal". Scanning dependencies of target startup_Generic_AM3357 make[2]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' make -f platform/Generic_AM3357/CMakeFiles/startup_Generic_AM3357.dir/build.make platform/Generic_AM3357/CMakeFiles/startup_Generic_AM3357.dir/build make[2]: Entering directory '/home/goral/projects/cmpc_cpu_bld' [ 50%] Building C object platform/Generic_AM3357/CMakeFiles/startup_Generic_AM3357.dir/main.c.obj cd /home/goral/projects/cmpc_cpu_bld/platform/Generic_AM3357 && /home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/arm-none-eabi-gcc -Dgcc -I/home/goral/projects/cmpc_cpu/platform/include -I/home/goral/projects/cmpc_cpu/applications/baremetal/c_hello_world -mtune=cortex-a8 -marm -Dam3357 -g -gdwarf-3 -gstrict-dwarf -Wall -mcpu=cortex-a8 -Wl,-Map,"c_hello_world.map" -Wl,--defsym,STACKSIZE=0x1C000 -Wl,--defsym,HEAPSIZE=0x400 -o CMakeFiles/startup_Generic_AM3357.dir/main.c.obj -c /home/goral/projects/cmpc_cpu/platform/Generic_AM3357/main.c [ 50%] Building ASM object platform/Generic_AM3357/CMakeFiles/startup_Generic_AM3357.dir/startup_ARMCA8.S.obj cd /home/goral/projects/cmpc_cpu_bld/platform/Generic_AM3357 && /home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/arm-none-eabi-gcc -Dgcc -I/home/goral/projects/cmpc_cpu/platform/include -I/home/goral/projects/cmpc_cpu/applications/baremetal/c_hello_world -mtune=cortex-a8 -marm -Dam3357 -g -gdwarf-3 -gstrict-dwarf -Wall -mcpu=cortex-a8 -Wl,-Map,"c_hello_world.map" -Wl,--defsym,STACKSIZE=0x1C000 -Wl,--defsym,HEAPSIZE=0x400 -o CMakeFiles/startup_Generic_AM3357.dir/startup_ARMCA8.S.obj -c /home/goral/projects/cmpc_cpu/platform/Generic_AM3357/startup_ARMCA8.S make[2]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' [ 50%] Built target startup_Generic_AM3357 make -f applications/baremetal/c_hello_world/CMakeFiles/app.dir/build.make applications/baremetal/c_hello_world/CMakeFiles/app.dir/depend make[2]: Entering directory '/home/goral/projects/cmpc_cpu_bld' cd /home/goral/projects/cmpc_cpu_bld && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/goral/projects/cmpc_cpu /home/goral/projects/cmpc_cpu/applications/baremetal/c_hello_world /home/goral/projects/cmpc_cpu_bld /home/goral/projects/cmpc_cpu_bld/applications/baremetal/c_hello_world /home/goral/projects/cmpc_cpu_bld/applications/baremetal/c_hello_world/CMakeFiles/app.dir/DependInfo.cmake --color= Dependee "/home/goral/projects/cmpc_cpu_bld/applications/baremetal/c_hello_world/CMakeFiles/app.dir/DependInfo.cmake" is newer than depender "/home/goral/projects/cmpc_cpu_bld/applications/baremetal/c_hello_world/CMakeFiles/app.dir/depend.internal". Dependee "/home/goral/projects/cmpc_cpu_bld/applications/baremetal/c_hello_world/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/home/goral/projects/cmpc_cpu_bld/applications/baremetal/c_hello_world/CMakeFiles/app.dir/depend.internal". Scanning dependencies of target app make[2]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' make -f applications/baremetal/c_hello_world/CMakeFiles/app.dir/build.make applications/baremetal/c_hello_world/CMakeFiles/app.dir/build make[2]: Entering directory '/home/goral/projects/cmpc_cpu_bld' [100%] Building C object applications/baremetal/c_hello_world/CMakeFiles/app.dir/AppMain.c.obj cd /home/goral/projects/cmpc_cpu_bld/applications/baremetal/c_hello_world && /home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/arm-none-eabi-gcc -Dgcc -mtune=cortex-a8 -marm -Dam3357 -g -gdwarf-3 -gstrict-dwarf -Wall -mcpu=cortex-a8 -Wl,-Map,"c_hello_world.map" -Wl,--defsym,STACKSIZE=0x1C000 -Wl,--defsym,HEAPSIZE=0x400 -o CMakeFiles/app.dir/AppMain.c.obj -c /home/goral/projects/cmpc_cpu/applications/baremetal/c_hello_world/AppMain.c make[2]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' [100%] Built target app make -f applications/baremetal/c_hello_world/CMakeFiles/c_hello_world.out.dir/build.make applications/baremetal/c_hello_world/CMakeFiles/c_hello_world.out.dir/depend make[2]: Entering directory '/home/goral/projects/cmpc_cpu_bld' cd /home/goral/projects/cmpc_cpu_bld && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/goral/projects/cmpc_cpu /home/goral/projects/cmpc_cpu/applications/baremetal/c_hello_world /home/goral/projects/cmpc_cpu_bld /home/goral/projects/cmpc_cpu_bld/applications/baremetal/c_hello_world /home/goral/projects/cmpc_cpu_bld/applications/baremetal/c_hello_world/CMakeFiles/c_hello_world.out.dir/DependInfo.cmake --color= Dependee "/home/goral/projects/cmpc_cpu_bld/applications/baremetal/c_hello_world/CMakeFiles/c_hello_world.out.dir/DependInfo.cmake" is newer than depender "/home/goral/projects/cmpc_cpu_bld/applications/baremetal/c_hello_world/CMakeFiles/c_hello_world.out.dir/depend.internal". Dependee "/home/goral/projects/cmpc_cpu_bld/applications/baremetal/c_hello_world/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/home/goral/projects/cmpc_cpu_bld/applications/baremetal/c_hello_world/CMakeFiles/c_hello_world.out.dir/depend.internal". Scanning dependencies of target c_hello_world.out make[2]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' make -f applications/baremetal/c_hello_world/CMakeFiles/c_hello_world.out.dir/build.make applications/baremetal/c_hello_world/CMakeFiles/c_hello_world.out.dir/build make[2]: Entering directory '/home/goral/projects/cmpc_cpu_bld' [100%] Linking C executable c_hello_world.out cd /home/goral/projects/cmpc_cpu_bld/applications/baremetal/c_hello_world && /usr/bin/cmake -E cmake_link_script CMakeFiles/c_hello_world.out.dir/link.txt --verbose=1 /home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/arm-none-eabi-gcc -mtune=cortex-a8 -marm -Dam3357 -g -gdwarf-3 -gstrict-dwarf -Wall -mcpu=cortex-a8 -Wl,-Map,"c_hello_world.map" -Wl,--defsym,STACKSIZE=0x1C000 -Wl,--defsym,HEAPSIZE=0x400 --specs=nosys.specs -T/home/goral/projects/cmpc_cpu/platform/Generic_AM3357/AM335x.lds ../../../platform/Generic_AM3357/CMakeFiles/startup_Generic_AM3357.dir/main.c.obj ../../../platform/Generic_AM3357/CMakeFiles/startup_Generic_AM3357.dir/startup_ARMCA8.S.obj CMakeFiles/app.dir/AppMain.c.obj -o c_hello_world.out make[2]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' [100%] Built target c_hello_world.out make[1]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' /usr/bin/cmake -E cmake_progress_start /home/goral/projects/cmpc_cpu_bld/CMakeFiles 0 goral@srv47rnd1:~/projects/cmpc_cpu_bld$
Second application is another helloworld app with sysbios:
goral@srv47rnd1:~/projects/cmpc_cpu_bld$ source ../cmpc_cpu/build/sysbios_am3357_hello_world_build.sh Detected system: Linux TOOLCHAIN_PATH: /home/rnd_share/gcc_arm//gcc-arm-none-eabi-6-2017-q1-update Detected system: Linux CMAKE_CMD: -DSYSBIOS_DIR=/home/rnd_share/sysbios/ -DTOOLCHAIN_PATH=/home/rnd_share/gcc_arm//gcc-arm-none-eabi-6-2017-q1-update -DAPP=sysbios_hello_world -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=/home/goral/projects/cmpc_cpu/build/../platform/Sysbios_AM3357/toolchain_GNU_Sysbios_AM3357.cmake /home/goral/projects/cmpc_cpu/build/../ -DSYSBIOS_DIR=/home/rnd_share/sysbios/ -DTOOLCHAIN_PATH=/home/rnd_share/gcc_arm//gcc-arm-none-eabi-6-2017-q1-update -DAPP=sysbios_hello_world -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=/home/goral/projects/cmpc_cpu/build/../platform/Sysbios_AM3357/toolchain_GNU_Sysbios_AM3357.cmake /home/goral/projects/cmpc_cpu/build/../ -DSYSBIOS_DIR=/home/rnd_share/sysbios/ -DTOOLCHAIN_PATH=/home/rnd_share/gcc_arm//gcc-arm-none-eabi-6-2017-q1-update -DAPP=sysbios_hello_world -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=/home/goral/projects/cmpc_cpu/build/../platform/Sysbios_AM3357/toolchain_GNU_Sysbios_AM3357.cmake /home/goral/projects/cmpc_cpu/build/../ -DSYSBIOS_DIR=/home/rnd_share/sysbios/ -DTOOLCHAIN_PATH=/home/rnd_share/gcc_arm//gcc-arm-none-eabi-6-2017-q1-update -DAPP=sysbios_hello_world -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=/home/goral/projects/cmpc_cpu/build/../platform/Sysbios_AM3357/toolchain_GNU_Sysbios_AM3357.cmake /home/goral/projects/cmpc_cpu/build/../ -DSYSBIOS_DIR=/home/rnd_share/sysbios/ -DTOOLCHAIN_PATH=/home/rnd_share/gcc_arm//gcc-arm-none-eabi-6-2017-q1-update -DAPP=sysbios_hello_world -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=/home/goral/projects/cmpc_cpu/build/../platform/Sysbios_AM3357/toolchain_GNU_Sysbios_AM3357.cmake /home/goral/projects/cmpc_cpu/build/../ -DSYSBIOS_DIR=/home/rnd_share/sysbios/ -DTOOLCHAIN_PATH=/home/rnd_share/gcc_arm//gcc-arm-none-eabi-6-2017-q1-update -DAPP=sysbios_hello_world -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=/home/goral/projects/cmpc_cpu/build/../platform/Sysbios_AM3357/toolchain_GNU_Sysbios_AM3357.cmake /home/goral/projects/cmpc_cpu/build/../ -DSYSBIOS_DIR=/home/rnd_share/sysbios/ -DTOOLCHAIN_PATH=/home/rnd_share/gcc_arm//gcc-arm-none-eabi-6-2017-q1-update -DAPP=sysbios_hello_world -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=/home/goral/projects/cmpc_cpu/build/../platform/Sysbios_AM3357/toolchain_GNU_Sysbios_AM3357.cmake /home/goral/projects/cmpc_cpu/build/../ -- The C compiler identification is GNU -- The CXX compiler identification is GNU -- Check for working C compiler: /home/rnd_share/gcc_arm//gcc-arm-none-eabi-6-2017-q1-update/bin/arm-none-eabi-gcc -- Check for working C compiler: /home/rnd_share/gcc_arm//gcc-arm-none-eabi-6-2017-q1-update/bin/arm-none-eabi-gcc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Detecting C compile features -- Detecting C compile features - done -- Check for working CXX compiler: /home/rnd_share/gcc_arm//gcc-arm-none-eabi-6-2017-q1-update/bin/arm-none-eabi-g++ -- Check for working CXX compiler: /home/rnd_share/gcc_arm//gcc-arm-none-eabi-6-2017-q1-update/bin/arm-none-eabi-g++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- The ASM compiler identification is GNU -- Found assembler: /home/rnd_share/gcc_arm//gcc-arm-none-eabi-6-2017-q1-update/bin/arm-none-eabi-gcc -- ############ including project specific settings -- ############ including platform specific settings -- Generating done -- Build files have been written to: /home/goral/projects/cmpc_cpu_bld goral@srv47rnd1:~/projects/cmpc_cpu_bld$ make VERBOSE=1 /usr/bin/cmake -H/home/goral/projects/cmpc_cpu -B/home/goral/projects/cmpc_cpu_bld --check-build-system CMakeFiles/Makefile.cmake 0 /usr/bin/cmake -E cmake_progress_start /home/goral/projects/cmpc_cpu_bld/CMakeFiles /home/goral/projects/cmpc_cpu_bld/CMakeFiles/progress.marks make -f CMakeFiles/Makefile2 all make[1]: Entering directory '/home/goral/projects/cmpc_cpu_bld' make -f platform/Sysbios_AM3357/CMakeFiles/app_dbg.cfg.dir/build.make platform/Sysbios_AM3357/CMakeFiles/app_dbg.cfg.dir/depend make[2]: Entering directory '/home/goral/projects/cmpc_cpu_bld' cd /home/goral/projects/cmpc_cpu_bld && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/goral/projects/cmpc_cpu /home/goral/projects/cmpc_cpu/platform/Sysbios_AM3357 /home/goral/projects/cmpc_cpu_bld /home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357 /home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/app_dbg.cfg.dir/DependInfo.cmake --color= Dependee "/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/app_dbg.cfg.dir/DependInfo.cmake" is newer than depender "/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/app_dbg.cfg.dir/depend.internal". Dependee "/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/app_dbg.cfg.dir/depend.internal". Scanning dependencies of target app_dbg.cfg make[2]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' make -f platform/Sysbios_AM3357/CMakeFiles/app_dbg.cfg.dir/build.make platform/Sysbios_AM3357/CMakeFiles/app_dbg.cfg.dir/build make[2]: Entering directory '/home/goral/projects/cmpc_cpu_bld' cd /home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357 && cp -u /home/goral/projects/cmpc_cpu/platform/Sysbios_AM3357/app_dbg.cfg /home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/ make[2]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' [ 0%] Built target app_dbg.cfg make -f platform/Sysbios_AM3357/CMakeFiles/sysbios_intermediate.dir/build.make platform/Sysbios_AM3357/CMakeFiles/sysbios_intermediate.dir/depend make[2]: Entering directory '/home/goral/projects/cmpc_cpu_bld' cd /home/goral/projects/cmpc_cpu_bld && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/goral/projects/cmpc_cpu /home/goral/projects/cmpc_cpu/platform/Sysbios_AM3357 /home/goral/projects/cmpc_cpu_bld /home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357 /home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/sysbios_intermediate.dir/DependInfo.cmake --color= Dependee "/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/sysbios_intermediate.dir/DependInfo.cmake" is newer than depender "/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/sysbios_intermediate.dir/depend.internal". Dependee "/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/sysbios_intermediate.dir/depend.internal". Scanning dependencies of target sysbios_intermediate make[2]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' make -f platform/Sysbios_AM3357/CMakeFiles/sysbios_intermediate.dir/build.make platform/Sysbios_AM3357/CMakeFiles/sysbios_intermediate.dir/build make[2]: Entering directory '/home/goral/projects/cmpc_cpu_bld' cd /home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357 && /home/rnd_share/sysbios//xdctools_3_50_00_10_core/xs --xdcpath="/home/goral/projects/cmpc_cpu/platform/cmpc30/packages;/home/rnd_share/sysbios//bios_6_51_00_15/packages/" xdc.tools.configuro -o configPkg -t gnu.targets.arm.A8F -p huettinger.cmpc30 -r debug -c /home/rnd_share/gcc_arm//gcc-arm-none-eabi-6-2017-q1-update app_dbg.cfg making package.mak (because of package.bld) ... generating interfaces for package configPkg (because package/package.xdc.inc is older than package.xdc) ... configuring app_dbg.xa8fg from package/cfg/app_dbg_pa8fg.cfg ... generating custom ti.sysbios library makefile ... Starting build of library sources ... making /home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/src/sysbios/sysbios.aa8fg ... gmake[1]: Entering directory `/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/src/sysbios' asma8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/family/arm/IntrinsicsSupport_asm_gnu.asm ... asma8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/family/arm/TaskSupport_asm_gnu.asm ... asma8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/timers/dmtimer/Timer_asm_gnu.sv7A ... asma8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/family/arm/a8/Cache_asm_gnu.sv7A ... asma8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/family/arm/a8/Mmu_asm_gnu.sv7A ... asma8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/family/arm/a8/TimestampProvider_asm_gnu.sv7A ... asma8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/family/arm/a8/intcps/Hwi_asm_gnu.sv7A ... asma8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/family/arm/exc/Exception_asm_gnu.asm ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/BIOS.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/family/arm/IntrinsicsSupport.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/family/arm/TaskSupport.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/knl/Clock.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/knl/Idle.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/knl/Intrinsics.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/knl/Event.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/knl/Mailbox.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/knl/Queue.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/knl/Semaphore.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/knl/Swi.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/knl/Task.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/hal/Cache.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/hal/Core.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/hal/CoreNull.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/hal/Hwi.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/hal/Hwi_stack.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/hal/Hwi_startup.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/timers/dmtimer/Timer.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/family/arm/a8/ti81xx/TimerSupport.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/heaps/HeapMem.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/utils/Load.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/utils/Load_CPU.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/gates/GateHwi.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/gates/GateMutexPri.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/gates/GateMutex.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/family/arm/a8/Cache.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/family/arm/a8/Mmu.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/family/arm/a8/TimestampProvider.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/rts/gnu/ReentSupport.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/rts/gnu/SemiHostSupport.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/family/arm/a8/intcps/Hwi.c ... cla8fg /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/family/arm/exc/Exception.c ... ara8fg arm_IntrinsicsSupport_asm_gnu.o arm_TaskSupport_asm_gnu.o dmtimer_Timer_asm_gnu.o a8_Cache_asm_gnu.o a8_Mmu_asm_gnu.o a8_TimestampProvider_asm_gnu.o intcps_Hwi_asm_gnu.o exc_Exception_asm_gnu.o _BIOS.o arm_IntrinsicsSupport.o arm_TaskSupport.o knl_Clock.o knl_Idle.o knl_Intrinsics.o knl_Event.o knl_Mailbox.o knl_Queue.o knl_Semaphore.o knl_Swi.o knl_Task.o hal_Cache.o hal_Core.o hal_CoreNull.o hal_Hwi.o hal_Hwi_stack.o hal_Hwi_startup.o dmtimer_Timer.o ti81xx_TimerSupport.o heaps_HeapMem.o utils_Load.o utils_Load_CPU.o gates_GateHwi.o gates_GateMutexPri.o gates_GateMutex.o a8_Cache.o a8_Mmu.o a8_TimestampProvider.o gnu_ReentSupport.o gnu_SemiHostSupport.o intcps_Hwi.o exc_Exception.o ... gmake[1]: Leaving directory `/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/src/sysbios' Build of libraries done. cla8fg package/cfg/app_dbg_pa8fg.c ... make[2]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' [ 0%] Built target sysbios_intermediate make -f platform/Sysbios_AM3357/CMakeFiles/sysbios.aa8fg.dir/build.make platform/Sysbios_AM3357/CMakeFiles/sysbios.aa8fg.dir/depend make[2]: Entering directory '/home/goral/projects/cmpc_cpu_bld' cd /home/goral/projects/cmpc_cpu_bld && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/goral/projects/cmpc_cpu /home/goral/projects/cmpc_cpu/platform/Sysbios_AM3357 /home/goral/projects/cmpc_cpu_bld /home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357 /home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/sysbios.aa8fg.dir/DependInfo.cmake --color= Dependee "/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/sysbios.aa8fg.dir/DependInfo.cmake" is newer than depender "/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/sysbios.aa8fg.dir/depend.internal". Dependee "/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/sysbios.aa8fg.dir/depend.internal". Scanning dependencies of target sysbios.aa8fg make[2]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' make -f platform/Sysbios_AM3357/CMakeFiles/sysbios.aa8fg.dir/build.make platform/Sysbios_AM3357/CMakeFiles/sysbios.aa8fg.dir/build make[2]: Entering directory '/home/goral/projects/cmpc_cpu_bld' cd /home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357 && cp src/sysbios/sysbios.aa8fg ./libsysbios.a make[2]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' [ 0%] Built target sysbios.aa8fg make -f platform/Sysbios_AM3357/CMakeFiles/startup_Sysbios_AM3357.dir/build.make platform/Sysbios_AM3357/CMakeFiles/startup_Sysbios_AM3357.dir/depend make[2]: Entering directory '/home/goral/projects/cmpc_cpu_bld' cd /home/goral/projects/cmpc_cpu_bld && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/goral/projects/cmpc_cpu /home/goral/projects/cmpc_cpu/platform/Sysbios_AM3357 /home/goral/projects/cmpc_cpu_bld /home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357 /home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/startup_Sysbios_AM3357.dir/DependInfo.cmake --color= Dependee "/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/startup_Sysbios_AM3357.dir/DependInfo.cmake" is newer than depender "/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/startup_Sysbios_AM3357.dir/depend.internal". Dependee "/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/CMakeFiles/startup_Sysbios_AM3357.dir/depend.internal". Scanning dependencies of target startup_Sysbios_AM3357 make[2]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' make -f platform/Sysbios_AM3357/CMakeFiles/startup_Sysbios_AM3357.dir/build.make platform/Sysbios_AM3357/CMakeFiles/startup_Sysbios_AM3357.dir/build make[2]: Entering directory '/home/goral/projects/cmpc_cpu_bld' [ 0%] Building C object platform/Sysbios_AM3357/CMakeFiles/startup_Sysbios_AM3357.dir/main.c.obj cd /home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357 && /home/rnd_share/gcc_arm//gcc-arm-none-eabi-6-2017-q1-update/bin/arm-none-eabi-gcc -Dgcc -I/home/goral/projects/cmpc_cpu/platform/include -I/home/goral/projects/cmpc_cpu/applications/sysbios_hello_world -I/home/goral/projects/cmpc_cpu/applications/sysbios_hello_world/include -mthumb -mthumb-interwork -fno-exceptions -fno-non-call-exceptions -mcpu=cortex-a8 -mtune=cortex-a8 -march=armv7-a -mfloat-abi=hard -mno-unaligned-access -ffunction-sections -fdata-sections -Wl,--gc-sections -Dam3357 -Wall -MMD -MP @/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357//configPkg/compiler.opt -mthumb -mthumb-interwork -fno-exceptions -fno-non-call-exceptions -mcpu=cortex-a8 -mtune=cortex-a8 -march=armv7-a -mfloat-abi=hard -mno-unaligned-access -ffunction-sections -fdata-sections -Wl,--gc-sections -Dam3357 -Wall -MMD -MP -g -gdwarf-3 -O2 -gstrict-dwarf -o CMakeFiles/startup_Sysbios_AM3357.dir/main.c.obj -c /home/goral/projects/cmpc_cpu/platform/Sysbios_AM3357/main.c /home/goral/projects/cmpc_cpu/platform/Sysbios_AM3357/main.c: In function 'main': /home/goral/projects/cmpc_cpu/platform/Sysbios_AM3357/main.c:24:18: warning: passing argument 1 of 'ti_sysbios_knl_Task_create' from incompatible pointer type [-Wincompatible-pointer-types] TASK_CREATE (AppMain, &taskParams, NULL); ^ /home/goral/projects/cmpc_cpu/platform/Sysbios_AM3357/main.c:16:109: note: in definition of macro 'TASK_CREATE' #define TASK_CREATE(arg0, arg1, arg2) (((arg1)->instance->name = STR_HELPER(arg0)) != NULL) ? Task_create(arg0, arg1, arg2) : NULL ^~~~ In file included from /home/goral/projects/cmpc_cpu/platform/Sysbios_AM3357/main.c:9:0: /home/rnd_share/sysbios/bios_6_51_00_15/packages/ti/sysbios/knl/Task.h:830:37: note: expected 'ti_sysbios_knl_Task_FuncPtr {aka void (*)(unsigned int, unsigned int)}' but argument is of type 'int (*)(int, char **)' __extern ti_sysbios_knl_Task_Handle ti_sysbios_knl_Task_create( ti_sysbios_knl_Task_FuncPtr fxn, const ti_sysbios_knl_Task_Params *__prms, xdc_runtime_Error_Block *__eb ); ^~~~~~~~~~~~~~~~~~~~~~~~~~ make[2]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' [ 0%] Built target startup_Sysbios_AM3357 make -f applications/sysbios_hello_world/CMakeFiles/app.dir/build.make applications/sysbios_hello_world/CMakeFiles/app.dir/depend make[2]: Entering directory '/home/goral/projects/cmpc_cpu_bld' cd /home/goral/projects/cmpc_cpu_bld && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/goral/projects/cmpc_cpu /home/goral/projects/cmpc_cpu/applications/sysbios_hello_world /home/goral/projects/cmpc_cpu_bld /home/goral/projects/cmpc_cpu_bld/applications/sysbios_hello_world /home/goral/projects/cmpc_cpu_bld/applications/sysbios_hello_world/CMakeFiles/app.dir/DependInfo.cmake --color= Dependee "/home/goral/projects/cmpc_cpu_bld/applications/sysbios_hello_world/CMakeFiles/app.dir/DependInfo.cmake" is newer than depender "/home/goral/projects/cmpc_cpu_bld/applications/sysbios_hello_world/CMakeFiles/app.dir/depend.internal". Dependee "/home/goral/projects/cmpc_cpu_bld/applications/sysbios_hello_world/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/home/goral/projects/cmpc_cpu_bld/applications/sysbios_hello_world/CMakeFiles/app.dir/depend.internal". Scanning dependencies of target app make[2]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' make -f applications/sysbios_hello_world/CMakeFiles/app.dir/build.make applications/sysbios_hello_world/CMakeFiles/app.dir/build make[2]: Entering directory '/home/goral/projects/cmpc_cpu_bld' [ 50%] Building C object applications/sysbios_hello_world/CMakeFiles/app.dir/main.c.obj cd /home/goral/projects/cmpc_cpu_bld/applications/sysbios_hello_world && /home/rnd_share/gcc_arm//gcc-arm-none-eabi-6-2017-q1-update/bin/arm-none-eabi-gcc -Dgcc -mthumb -mthumb-interwork -fno-exceptions -fno-non-call-exceptions -mcpu=cortex-a8 -mtune=cortex-a8 -march=armv7-a -mfloat-abi=hard -mno-unaligned-access -ffunction-sections -fdata-sections -Wl,--gc-sections -Dam3357 -Wall -MMD -MP @/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357//configPkg/compiler.opt -mthumb -mthumb-interwork -fno-exceptions -fno-non-call-exceptions -mcpu=cortex-a8 -mtune=cortex-a8 -march=armv7-a -mfloat-abi=hard -mno-unaligned-access -ffunction-sections -fdata-sections -Wl,--gc-sections -Dam3357 -Wall -MMD -MP -g -gdwarf-3 -O2 -gstrict-dwarf -o CMakeFiles/app.dir/main.c.obj -c /home/goral/projects/cmpc_cpu/applications/sysbios_hello_world/main.c make[2]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' [ 50%] Built target app make -f applications/sysbios_hello_world/CMakeFiles/sysbios_hello_world.out.dir/build.make applications/sysbios_hello_world/CMakeFiles/sysbios_hello_world.out.dir/depend make[2]: Entering directory '/home/goral/projects/cmpc_cpu_bld' cd /home/goral/projects/cmpc_cpu_bld && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/goral/projects/cmpc_cpu /home/goral/projects/cmpc_cpu/applications/sysbios_hello_world /home/goral/projects/cmpc_cpu_bld /home/goral/projects/cmpc_cpu_bld/applications/sysbios_hello_world /home/goral/projects/cmpc_cpu_bld/applications/sysbios_hello_world/CMakeFiles/sysbios_hello_world.out.dir/DependInfo.cmake --color= Dependee "/home/goral/projects/cmpc_cpu_bld/applications/sysbios_hello_world/CMakeFiles/sysbios_hello_world.out.dir/DependInfo.cmake" is newer than depender "/home/goral/projects/cmpc_cpu_bld/applications/sysbios_hello_world/CMakeFiles/sysbios_hello_world.out.dir/depend.internal". Dependee "/home/goral/projects/cmpc_cpu_bld/applications/sysbios_hello_world/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/home/goral/projects/cmpc_cpu_bld/applications/sysbios_hello_world/CMakeFiles/sysbios_hello_world.out.dir/depend.internal". Scanning dependencies of target sysbios_hello_world.out make[2]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' make -f applications/sysbios_hello_world/CMakeFiles/sysbios_hello_world.out.dir/build.make applications/sysbios_hello_world/CMakeFiles/sysbios_hello_world.out.dir/build make[2]: Entering directory '/home/goral/projects/cmpc_cpu_bld' [100%] Linking C executable sysbios_hello_world.out cd /home/goral/projects/cmpc_cpu_bld/applications/sysbios_hello_world && /usr/bin/cmake -E cmake_link_script CMakeFiles/sysbios_hello_world.out.dir/link.txt --verbose=1 /home/rnd_share/gcc_arm//gcc-arm-none-eabi-6-2017-q1-update/bin/arm-none-eabi-gcc -mthumb -mthumb-interwork -fno-exceptions -fno-non-call-exceptions -mcpu=cortex-a8 -mtune=cortex-a8 -march=armv7-a -mfloat-abi=hard -mno-unaligned-access -ffunction-sections -fdata-sections -Wl,--gc-sections -Dam3357 -Wall -MMD -MP @/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357//configPkg/compiler.opt -mthumb -mthumb-interwork -fno-exceptions -fno-non-call-exceptions -mcpu=cortex-a8 -mtune=cortex-a8 -march=armv7-a -mfloat-abi=hard -mno-unaligned-access -ffunction-sections -fdata-sections -Wl,--gc-sections -Dam3357 -Wall -MMD -MP -g -gdwarf-3 -O2 -gstrict-dwarf -L/home/rnd_share/sysbios//bios_6_51_00_15/packages//gnu/targets/arm/libs/install-native/arm-none-eabi/lib/hard -Wl,-T/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357//configPkg/linker.cmd -mabi=aapcs -mfpu=neon --specs=nano.specs -v -Wall -mfloat-abi=hard -Wl,-Map,".map" -nostartfiles -static -Wl,--gc-sections -Wl,--defsym,STACKSIZE=0x1C000 -Wl,--defsym,HEAPSIZE=0x400 -Wl,--start-group -lgcc -lm -lc_nano -lc -lrdimon -Wl,--end-group ../../platform/Sysbios_AM3357/CMakeFiles/startup_Sysbios_AM3357.dir/main.c.obj CMakeFiles/app.dir/main.c.obj -o sysbios_hello_world.out -L/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357 ../../platform/Sysbios_AM3357//libsysbios.a Using built-in specs. Reading specs from /home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/nano.specs rename spec link to nano_link rename spec link_gcc_c_sequence to nano_link_gcc_c_sequence rename spec cpp_unique_options to nano_cpp_unique_options COLLECT_GCC=/home/rnd_share/gcc_arm//gcc-arm-none-eabi-6-2017-q1-update/bin/arm-none-eabi-gcc COLLECT_LTO_WRAPPER=/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../lib/gcc/arm-none-eabi/6.3.1/lto-wrapper Target: arm-none-eabi Configured with: /tmp/jenkins-GCC-6-buildandreg-104_20170216_1487268972/src/gcc/configure --target=arm-none-eabi --prefix=/tmp/jenkins-GCC-6-buildandreg-104_20170216_1487268972/install-native --libexecdir=/tmp/jenkins-GCC-6-buildandreg-104_20170216_1487268972/install-native/lib --infodir=/tmp/jenkins-GCC-6-buildandreg-104_20170216_1487268972/install-native/share/doc/gcc-arm-none-eabi/info --mandir=/tmp/jenkins-GCC-6-buildandreg-104_20170216_1487268972/install-native/share/doc/gcc-arm-none-eabi/man --htmldir=/tmp/jenkins-GCC-6-buildandreg-104_20170216_1487268972/install-native/share/doc/gcc-arm-none-eabi/html --pdfdir=/tmp/jenkins-GCC-6-buildandreg-104_20170216_1487268972/install-native/share/doc/gcc-arm-none-eabi/pdf --enable-languages=c,c++ --enable-plugins --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --disable-tls --with-gnu-as --with-gnu-ld --with-newlib --with-headers=yes --with-python-dir=share/gcc-arm-none-eabi --with-sysroot=/tmp/jenkins-GCC-6-buildandreg-104_20170216_1487268972/install-native/arm-none-eabi --build=x86_64-linux-gnu --host=x86_64-linux-gnu --with-gmp=/tmp/jenkins-GCC-6-buildandreg-104_20170216_1487268972/build-native/host-libs/usr --with-mpfr=/tmp/jenkins-GCC-6-buildandreg-104_20170216_1487268972/build-native/host-libs/usr --with-mpc=/tmp/jenkins-GCC-6-buildandreg-104_20170216_1487268972/build-native/host-libs/usr --with-isl=/tmp/jenkins-GCC-6-buildandreg-104_20170216_1487268972/build-native/host-libs/usr --with-libelf=/tmp/jenkins-GCC-6-buildandreg-104_20170216_1487268972/build-native/host-libs/usr --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --with-pkgversion='GNU Tools for ARM Embedded Processors 6-2017-q1-update' --with-multilib-list=rmprofile Thread model: single gcc version 6.3.1 20170215 (release) [ARM/embedded-6-branch revision 245512] (GNU Tools for ARM Embedded Processors 6-2017-q1-update) COMPILER_PATH=/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../lib/gcc/arm-none-eabi/6.3.1/:/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../lib/gcc/:/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/bin/ LIBRARY_PATH=/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v7-ar/fpv3/hard/:/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/hard/:/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../arm-none-eabi/lib/thumb/v7-ar/fpv3/hard/:/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../lib/gcc/arm-none-eabi/6.3.1/:/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../lib/gcc/:/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/:/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../arm-none-eabi/lib/ COLLECT_GCC_OPTIONS='-mthumb' '-mcpu=cortex-a8' '-mtune=cortex-a8' '-march=armv7-a' '-mfloat-abi=hard' '-D' 'am3357' '-MMD' '-MP' '-mcpu=cortex-a8' '-mfpu=neon' '-mfloat-abi=hard' '-mabi=aapcs' '-g' '-I' '/home/goral/projects/cmpc_cpu/platform/cmpc30/packages' '-I' '/home/rnd_share/sysbios/bios_6_51_00_15/packages' '-I' '/home/rnd_share/sysbios/xdctools_3_50_00_10_core/packages' '-I' '/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/configPkg/..' '-D' 'xdc_target_types__=gnu/targets/arm/std.h' '-D' 'xdc_target_name__=A8F' '-D' 'xdc_cfg__xheader__="/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/configPkg/package/cfg/app_dbg_pa8fg.h"' '-mthumb' '-mthumb-interwork' '-fno-exceptions' '-fno-non-call-exceptions' '-mcpu=cortex-a8' '-mtune=cortex-a8' '-march=armv7-a' '-mfloat-abi=hard' '-mno-unaligned-access' '-ffunction-sections' '-fdata-sections' '-D' 'am3357' '-MMD' '-MP' '-g' '-gdwarf-3' '-O2' '-gstrict-dwarf' '-L/home/rnd_share/sysbios//bios_6_51_00_15/packages//gnu/targets/arm/libs/install-native/arm-none-eabi/lib/hard' '-mabi=aapcs' '-mfpu=neon' '-specs=nano.specs' '-v' '-Wall' '-mfloat-abi=hard' '-nostartfiles' '-static' '-o' 'sysbios_hello_world.out' '-L/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357' /home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../lib/gcc/arm-none-eabi/6.3.1/collect2 -plugin /home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../lib/gcc/arm-none-eabi/6.3.1/liblto_plugin.so -plugin-opt=/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../lib/gcc/arm-none-eabi/6.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccnFNTww.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lg_nano -plugin-opt=-pass-through=-lc_nano -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc_nano --sysroot=/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../arm-none-eabi -Bstatic -X -o sysbios_hello_world.out -L/home/rnd_share/sysbios//bios_6_51_00_15/packages//gnu/targets/arm/libs/install-native/arm-none-eabi/lib/hard -L/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357 -L/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../lib/gcc/arm-none-eabi/6.3.1/thumb/v7-ar/fpv3/hard -L/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/hard -L/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../arm-none-eabi/lib/thumb/v7-ar/fpv3/hard -L/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../lib/gcc/arm-none-eabi/6.3.1 -L/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../lib/gcc -L/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../lib/gcc/arm-none-eabi/6.3.1/../../../../arm-none-eabi/lib -L/home/rnd_share/gcc_arm/gcc-arm-none-eabi-6-2017-q1-update/bin/../arm-none-eabi/lib @/tmp/ccScftwM --start-group -lgcc -lg_nano -lc_nano --end-group --start-group -lgcc -lc_nano --end-group COLLECT_GCC_OPTIONS='-mthumb' '-mcpu=cortex-a8' '-mtune=cortex-a8' '-march=armv7-a' '-mfloat-abi=hard' '-D' 'am3357' '-MMD' '-MP' '-mcpu=cortex-a8' '-mfpu=neon' '-mfloat-abi=hard' '-mabi=aapcs' '-g' '-I' '/home/goral/projects/cmpc_cpu/platform/cmpc30/packages' '-I' '/home/rnd_share/sysbios/bios_6_51_00_15/packages' '-I' '/home/rnd_share/sysbios/xdctools_3_50_00_10_core/packages' '-I' '/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/configPkg/..' '-D' 'xdc_target_types__=gnu/targets/arm/std.h' '-D' 'xdc_target_name__=A8F' '-D' 'xdc_cfg__xheader__="/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357/configPkg/package/cfg/app_dbg_pa8fg.h"' '-mthumb' '-mthumb-interwork' '-fno-exceptions' '-fno-non-call-exceptions' '-mcpu=cortex-a8' '-mtune=cortex-a8' '-march=armv7-a' '-mfloat-abi=hard' '-mno-unaligned-access' '-ffunction-sections' '-fdata-sections' '-D' 'am3357' '-MMD' '-MP' '-g' '-gdwarf-3' '-O2' '-gstrict-dwarf' '-L/home/rnd_share/sysbios//bios_6_51_00_15/packages//gnu/targets/arm/libs/install-native/arm-none-eabi/lib/hard' '-mabi=aapcs' '-mfpu=neon' '-specs=nano.specs' '-v' '-Wall' '-mfloat-abi=hard' '-nostartfiles' '-static' '-o' 'sysbios_hello_world.out' '-L/home/goral/projects/cmpc_cpu_bld/platform/Sysbios_AM3357' make[2]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' [100%] Built target sysbios_hello_world.out make[1]: Leaving directory '/home/goral/projects/cmpc_cpu_bld' /usr/bin/cmake -E cmake_progress_start /home/goral/projects/cmpc_cpu_bld/CMakeFiles 0 goral@srv47rnd1:~/projects/cmpc_cpu_bld$
Im not sure what else can be helpful for you. Please let me know.
Greg.
Hello Ki.
Thank you for your support.
Can you let me know, how can I check status of ccbt-2200 ?
I've tried by sdo-web link from your message footer.
But it says that such entry doesnt exists.
Thank you,
Greg.