Menu

Linking SCons with CCES

Help
2019-08-05
2019-08-05
  • Arjuman Banu

    Arjuman Banu - 2019-08-05

    Hi,

    I have recently installed SCons, I need to know a way to link SCons with CCES(cross core embedded studio).
    I have given the path of CCES file(.c and .h files) and saved that file name in SConstruct. Is this the correct way?? Or is there any other way?

    This is my code:
    path= [r'C:\Users\akumallaarjuman\cces\2.8.1\new_test_Core1\src\new_test_Core1.c']
    env = Environment(ENV = {'PATH' : path})
    env = Environment(CPPPATH="inc")

    Here, the building is done. But, the build is done for the above script which i have written, not on the path which i have mentioned.

    Can you please guide me through?