Member Site › Forums › Rosetta 3 › Rosetta 3 – Build/Install › ROsetta installation on windows › Reply To: ROsetta installation on windows
Hi bharat_46010,
In tools/build/setup_platforms.py find the lines:
actual = {
"darwin": "macos",
"cygwin_nt-5.1": "cygwin",
}.get(expected, expected)
and modify them to:
actual = {
"darwin": "macos",
"cygwin_nt-5.1": "cygwin",
"cygwin_nt-6.1": "cygwin",
}.get(expected, expected)
This will indicate to scons that your version of cygwin should use the standard cygwin configuration setup. Also, if you haven’t done so already you will probably have to install the zlib library. You can download the latest source distribution from http://www.zlib.net.
Then when you are ready, please try running the local version of scons rather than the system version of scons.
./scons.py bin mode=release
Using this verison of scons will hopefully remove the ‘deprecated’ warnings.
Best,
Matt