Part Number:TM4C1294NCPDT
Tool/software: Linux
I'm Working migrating a project from CCS to GCC in linux
I can able to start compilation using tirtos_tivac_2_16_01_14 and xdctools_3_32_00_06_core
Now I'm seeing undefined reference to many functions at the final linking stage. I just named those functions below
`GPIOPinWrite'`SysCtlReset' `GPIO_read'`I2C_open'`I2C_Params_init'`I2C_transfer'
`UART_Params_init'`UART_open' `GPIO_write'`UART_write'
`UART_read' `SysCtlDelay' `GPIOPinTypeGPIOOutput'
`GPIOPinWrite' `GPIO_setCallback'`GPIO_enableInt'`GPIO_write'
`GPIO_read'`UART_Params_init'`uDMAErrorStatusGet' `SysCtlPeripheralEnable'
`EMAC_init'`GPIOPinTypeI2CSCL'`UARTTiva_fxnTable' `I2CTiva_fxnTable'
`strtoumax' `__ctype_ptr__' `RingBuf_peek' `RingBuf_put'
`USBBufferDataAvailable' `uDMAErrorStatusGet'`GPIOPinWrite' `EMACPHYWrite'
`SysCtlDelay'
Seems like these are library functions.
Even after adding -lgr -lusb -ldriver libraries along with their include paths I'm getting those errors.
Please help me to resolve this issue