Replies: 2 comments 2 replies
-
|
... I traced the examples and the issue seems to be at this point Line 84 in a22182b Despite the env initialization in SConstruct with tools=[], the DefaultEnvironment() function is called with empty args and kwargs, and initializes with with reference to the standard tools. adding in line 84 the arg tools=[] fixed the problem. With that in mind, my new question is what do I need to do in SConstruct to avoid that env initialization with reference to the default tools which triggers a dialog box on MacOS. |
Beta Was this translation helpful? Give feedback.
-
|
Ok, this SConstruct seems to work. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
We are trying to understand why our SCons based app has dependency on macos developer tools even though we use standard python and basic commands with no reference to tools such as
gitorgcc.Below is a simple example that demonstrates the issue .
Verification that developer tools are not installed
The SConstruct file
Creating input file
Runnins scons
Any idea what in SCons runtime depends on developers tools and how to avoid this dependency?
Beta Was this translation helpful? Give feedback.
All reactions