I'm trying to simply use the gcc compiler to comile the blinky project and I have followed the steps outlines here and tried many other options in trying to get it to work and i keep getting the same errors.
This seems like it should just compile.. I'm not even moving the folder around from the tiva ware main folder.
I used this link to try and tried other options and still nothing:
processors.wiki.ti.com/.../Using_GCC_with_Tiva_in_CCSv6
Errors I get are:
**** Build of configuration Debug__GNU for project blinky ****
"C:\\ti\\ccsv6\\utils\\bin\\gmake" -k all
'Building target: blinky.out'
'Invoking: GNU Linker'
"C:/ti/ccsv6/tools/compiler/gcc-arm-none-eabi-4_9-2015q3/bin/arm-none-eabi-gcc.exe" -march=armv7e-m -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 -DPART_TM4C123GH6PM -ffunction-sections -fdata-sections -g -gdwarf-3 -gstrict-dwarf -Wall -Wl,-Map,"blinky.map" -o"blinky.out" "./blinky.o" "./tm4c123gh6pm_startup_ccs_gcc.o" -Wl,-T"../tm4c123gh6pm.lds" -Wl,--start-group -lc -lgcc -lnosys -Wl,--end-group
makefile:145: recipe for target 'blinky.out' failed
./blinky.o: In function `main':
C:/ti/TivaWare_C_Series-2.1.3.156/examples/boards/ek-tm4c123gxl/blinky/blinky.c:54: undefined reference to `SysCtlPeripheralEnable'
C:/ti/TivaWare_C_Series-2.1.3.156/examples/boards/ek-tm4c123gxl/blinky/blinky.c:59: undefined reference to `SysCtlPeripheralReady'
C:/ti/TivaWare_C_Series-2.1.3.156/examples/boards/ek-tm4c123gxl/blinky/blinky.c:67: undefined reference to `GPIOPinTypeGPIOOutput'
C:/ti/TivaWare_C_Series-2.1.3.156/examples/boards/ek-tm4c123gxl/blinky/blinky.c:77: undefined reference to `GPIOPinWrite'
C:/ti/TivaWare_C_Series-2.1.3.156/examples/boards/ek-tm4c123gxl/blinky/blinky.c:89: undefined reference to `GPIOPinWrite'
collect2.exe: error: ld returned 1 exit status
gmake: *** [blinky.out] Error 1
gmake: Target 'all' not remade because of errors.
**** Build Finished ****