env=Environment(tools = [ 'mingw'])
env.PrependENVPath('PATH','C:\MinGW\bin')
env.AppendENVPath('LIB','C:\MinGW\lib')
when i do this,my gcc compiler is being set .how do i do it for TI c++ compiler.
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.
env=Environment(tools = [ 'mingw'])
env.PrependENVPath('PATH','C:\MinGW\bin')
env.AppendENVPath('LIB','C:\MinGW\lib')
when i do this,my gcc compiler is being set .how do i do it for TI c++ compiler.
I am curious why you want to use SCons with TI compiler?
I believe this questions should be asked to SCons community.
Regards,
Maciej
i'm trying to build a ti c++ project using scons platform..thats why i need to set my compiler in scons to ti c++..