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.
Hi,
Currently I'm planning to have a separate build system which should be build everything from Makefile ( which is manually written). I will be using Eclipse IDE environment. Can anyone please suggest how to proceed in writing a makefile to be invoked from eclipse IDE for the mentioned platform.
In Brief: The tool chain will be used as it is provided by TI ( TI ARM compiler, XDC tools, TI RTOS, XDS debugger ), but the ultimate goal is to create the build system which consists of makefile which should be run by make which is invoked from eclipse IDE.
And also:
1. Can we use the mingw make to execute the makefile for mentioned platform or gmake is mandatory which comes along with CCS installation.
2. I have observed like when I start build process of the sample Application project, the library is being generated by building the appBLE.cfg. please also suggest the way to achieve the same from makefile.
thanks,
Anil.
Anil Kumar Yadav Busanaboina said:1. I have observed at the initial step of build process is like the library is being build by invoking xdc tools, the following displays in console output. so how can we achieve the same execution from makefile, because i could not see any references to building the cfg file from makefile in CCS. please guide.
Check subdir_rules.mk. That has the command to build the cfg file.
Anil Kumar Yadav Busanaboina said:2. And then, next the application sources are getting compiled and at the end the linker is getting invoked and I have observed that two libraries are getting invoked(-l"libc.a" -l"C:/ti/IdefixInt/tirtos_simplelink_2_11_01_09/products/cc26xxware_2_00_06_14829/driverlib/bin/ccs/driverlib.lib" ), whether these two mentioned libraries are be
Those are independent libraries. libc.a is the default runtime support library that comes with the compiler and driverlib.lib comes with BLE SDK
Anil Kumar Yadav Busanaboina said:3. Can you please clear me on what are libraries are being built as part of building appBLE.cfg file.
the cgf file is for configuring the SYS/BIOS kernel. This wiki page has more information on the kernel;
Thanks
ki