Re: scons v4.3.0-1 outputs nothing on cygwin v2. 3.1

2022-05-16 Thread William Deegan
save this as SConstruct.simple print("I'm in a SConstruct") Then run scons -f SConstruct.simple Do you get any output? On Sun, May 15, 2022 at 6:44 PM Martin Ortuno < martinortunogonza...@gmail.com> wrote: > Hi everyone, > Here the results... > > $ which -a alternatives > > /usr/sbin/alter

Re: scons v4.3.0-1 outputs nothing on cygwin v2. 3.1

2022-05-15 Thread Martin Ortuno
Hi everyone, Here the results... $ which -a alternatives /usr/sbin/alternatives Then.. $ ls -glo $(which -a alternatives) -rwxrwx---+ 1 18944 Apr 5 2009 /usr/sbin/alternatives After that I ran… $ /usr/sbin/alternatives --verbose --auto python reading /var/lib/alternatives/python Ju

Re: scons v4.3.0-1 outputs nothing on cygwin v2. 3.1

2022-05-15 Thread Ken Brown
On 5/15/2022 6:03 PM, Martin Ortuno wrote: $ ls -glo /usr/bin/python lrwxrwxrwx 1 13 Jun 3 2015 /usr/bin/python -> python2.7.exe This shows that you have a very old version of python2, going back to before the python versions were managed by the alternatives system. You can't expect to ha

Re: scons v4.3.0-1 outputs nothing on cygwin v2. 3.1

2022-05-15 Thread Doug Henderson
Please show us the results of the following two commands: $ which -a alternatives $ ls -glo $( which -a alternatives ) Please note that /usr/sbin/alternatives must be executed in an elevated shell. The folder containing it is not normally included in the path for a non-elevated shell. It is cons

Re: scons v4.3.0-1 outputs nothing on cygwin v2. 3.1

2022-05-15 Thread Martin Ortuno
Hi, It would seem that it changed nothing... $ alternatives --verbose --auto python reading /var/lib/alternatives/python $ ls -glo /usr/bin/python lrwxrwxrwx 1 13 Jun 3 2015 /usr/bin/python -> python2.7.exe $ alternatives --display python python - status is auto. link currently points

Re: scons v4.3.0-1 outputs nothing on cygwin v2. 3.1

2022-05-15 Thread Brian Inglis
On 2022-05-15 11:10, Martin Ortuno wrote: Here the information you requested: $ ls -glo /usr/bin/python lrwxrwxrwx 1 13 Jun 3 2015 /usr/bin/python -> python2.7.exe $ alternatives --display python python - status is auto. link currently points to /usr/bin/python3.9 /usr/bin/python3.9 - priority

Re: scons v4.3.0-1 outputs nothing on cygwin v2. 3.1

2022-05-15 Thread Martin Ortuno
Hi all, Here the information you requested: $ ls -glo /usr/bin/python lrwxrwxrwx 1 13 Jun 3 2015 /usr/bin/python -> python2.7.exe $ alternatives --display python python - status is auto. link currently points to /usr/bin/python3.9 /usr/bin/python3.9 - priority 39 Current `best' version i

Re: scons v4.3.0-1 outputs nothing on cygwin v2. 3.1

2022-05-13 Thread Brian Inglis
On 2022-05-13 16:16, Martin Ortuno wrote: El vie., 13 de mayo de 2022 5:12 p. m., William Deegan escribió: On Fri, May 13, 2022 at 1:41 PM Martin Ortuno wrote: El vie., 13 de mayo de 2022 3:30 p. m., Martin Ortuno escribió: El vie., 13 de mayo de 2022 11:51 a. m., William Deegan escribió:

Re: scons v4.3.0-1 outputs nothing on cygwin v2. 3.1

2022-05-13 Thread Martin Ortuno
I am prompting which scons: Output: /bin/scons/ Thanks, Martin El vie., 13 de mayo de 2022 5:12 p. m., William Deegan escribió: > vi `which scons` > and see which python it's trying to use. > (from within your cygwin shell) > > Very surprised you get no output. > > On Fri, May 13, 2022 at 1:41 P

Re: scons v4.3.0-1 outputs nothing on cygwin v2. 3.1

2022-05-13 Thread William Deegan
vi `which scons` and see which python it's trying to use. (from within your cygwin shell) Very surprised you get no output. On Fri, May 13, 2022 at 1:41 PM Martin Ortuno < martinortunogonza...@gmail.com> wrote: > Actually i tried to open python3.9 from windows directly and then the > applicatio

Re: scons v4.3.0-1 outputs nothing on cygwin v2. 3.1

2022-05-13 Thread Martin Ortuno
Actually i tried to open python3.9 from windows directly and then the application crashes saying: "The procedure entry point __locale_ctype_ptr could not be located in the dynamic link library C:\Path\toCygwin\bin\libpython3.9.dll" Thanks again... Martin El vie., 13 de mayo de 2022 3:30 p. m., M

Re: scons v4.3.0-1 outputs nothing on cygwin v2. 3.1

2022-05-13 Thread Martin Ortuno
On the cygwin envuronment i have both python 2.7.10 and python 3.4.3, the one which is by default is python 2... Pretty sure that's the reason why is not working, i think we need python 3.9 for scons... The problem now is that i cannot install successfully python 3.9. I tried with the setup-x86, ju

Re: scons v4.3.0-1 outputs nothing on cygwin v2. 3.1

2022-05-13 Thread William Deegan
Are you sure you're running scons from cygwin? Which version of python do you have installed? On Fri, May 13, 2022 at 8:46 AM Martin Ortuno < martinortunogonza...@gmail.com> wrote: > Hi everyone, > On one project we are using cygwin v2.3.1 for 32 bits as a building > environment... We are integra

scons v4.3.0-1 outputs nothing on cygwin v2. 3.1

2022-05-13 Thread Martin Ortuno
Hi everyone, On one project we are using cygwin v2.3.1 for 32 bits as a building environment... We are integrating a library that is built scons, I tried to run scons v4.3.0-1 but when I prompt scons on the command line. Scons -v outputs nothing... I would appreciate your support in this matters..