You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to configure sconsolidator to compile my project, but I can't figure it out.
When I launch scons in the terminal session, the project compile successfully as well as in eclipse by modifying the C++ builder configuration (make -> scons).
When I try to convert this project into scons project, the lauch command is more complex than the one I use to use and the building process never ends.
SConsolidator needs the additional command line arguments in order to run a Python script which collects the necessary include paths and macros for your build in order to be able to add it to the CDT project settings.
Your command line does not work because SCons is not able to find the Python file BuildInfoCollector.py which is provided by the plug-in, but deleted after the build is run.
You can run the command by copying this file somewhere to your hard disk and by passing the path as a command line argument.
The output of this command would very much help in finding the root cause of the issue you mentioned.
Hi,
I am trying to configure sconsolidator to compile my project, but I can't figure it out.
When I launch scons in the terminal session, the project compile successfully as well as in eclipse by modifying the C++ builder configuration (make -> scons).
When I try to convert this project into scons project, the lauch command is more complex than the one I use to use and the building process never ends.
becomes
If I copy/paste this command line in the terminal session, I have the following error :
How do I have to set up scons to make it works ? Why does it add the
-s
option ?The text was updated successfully, but these errors were encountered: