Hey All,
I was exited to try the scons build system for externals but unfortunatly:
bbogart@insitu:~/pd-stuff/externals/build/linux$ scons
scons: *** No SConstruct file found. File "/usr/lib/scons/SCons/Script/__init__.py", line 870, in _main
I have no knowledge of scons so this error means nothing to me.
I just installed with apt-get install scons
Which gave me version 0.96.1-1
back to ol' make.
Thanks. B.
Well "make" in build/linux almost got me there. It fails with:
In file included from ../../iemlib/src/iem_mp3/sigmp3play.c:27, from ../src/mp3play~.c:1: ../../iemlib/src/iem_mp3/iemlib.h:1:241: warning: extra tokens at end of #ifndef directive ../../iemlib/src/iem_mp3/iemlib.h:9:7: warning: extra tokens at end of #endif directive ../../iemlib/src/iem_mp3/iemlib.h:9:13: warning: no newline at end of file ../../iemlib/src/iem_mp3/iemlib.h:1:1: unterminated #ifndef In file included from ../src/mp3play~.c:1: ../../iemlib/src/iem_mp3/sigmp3play.c: In function `decodeMP3': ../../iemlib/src/iem_mp3/sigmp3play.c:779: warning: declaration of `error' shadows a global declaration ../../../pd/src/m_pd.h:439: warning: shadowed declaration is here ../../iemlib/src/iem_mp3/sigmp3play.c: In function `init_layer3': ../../iemlib/src/iem_mp3/sigmp3play.c:995: warning: declaration of `l' shadows a previous local ../../iemlib/src/iem_mp3/sigmp3play.c:893: warning: shadowed declaration is here ../../iemlib/src/iem_mp3/sigmp3play.c:1011: warning: declaration of `l' shadows a previous local
. . .
or so. I thought the files were copied to another folder and compiled from there? I used to just delete the files that did not compile on my machine. So it seems that was some much older version of the build-system.
Looking forward to getting scons to work.
Where does scons "install" the externals to?
Thanks B
B. Bogart wrote:
Hey All,
I was exited to try the scons build system for externals but unfortunatly:
bbogart@insitu:~/pd-stuff/externals/build/linux$ scons
scons: *** No SConstruct file found. File "/usr/lib/scons/SCons/Script/__init__.py", line 870, in _main
I have no knowledge of scons so this error means nothing to me.
I just installed with apt-get install scons
Which gave me version 0.96.1-1
back to ol' make.
Thanks. B.
PD-dev mailing list PD-dev@iem.at http://lists.puredata.info/listinfo/pd-dev
Tried make -k ?
Guenter
On Thu, 23 Jun 2005, B. Bogart wrote:
Well "make" in build/linux almost got me there. It fails with:
In file included from ../../iemlib/src/iem_mp3/sigmp3play.c:27, from ../src/mp3play~.c:1: ../../iemlib/src/iem_mp3/iemlib.h:1:241: warning: extra tokens at end of #ifndef directive ../../iemlib/src/iem_mp3/iemlib.h:9:7: warning: extra tokens at end of #endif directive ../../iemlib/src/iem_mp3/iemlib.h:9:13: warning: no newline at end of file ../../iemlib/src/iem_mp3/iemlib.h:1:1: unterminated #ifndef In file included from ../src/mp3play~.c:1: ../../iemlib/src/iem_mp3/sigmp3play.c: In function `decodeMP3': ../../iemlib/src/iem_mp3/sigmp3play.c:779: warning: declaration of `error' shadows a global declaration ../../../pd/src/m_pd.h:439: warning: shadowed declaration is here ../../iemlib/src/iem_mp3/sigmp3play.c: In function `init_layer3': ../../iemlib/src/iem_mp3/sigmp3play.c:995: warning: declaration of `l' shadows a previous local ../../iemlib/src/iem_mp3/sigmp3play.c:893: warning: shadowed declaration is here ../../iemlib/src/iem_mp3/sigmp3play.c:1011: warning: declaration of `l' shadows a previous local
. . .
or so. I thought the files were copied to another folder and compiled from there? I used to just delete the files that did not compile on my machine. So it seems that was some much older version of the build-system.
Looking forward to getting scons to work.
Where does scons "install" the externals to?
Thanks B
B. Bogart wrote:
Hey All,
I was exited to try the scons build system for externals but unfortunatly:
bbogart@insitu:~/pd-stuff/externals/build/linux$ scons
scons: *** No SConstruct file found. File "/usr/lib/scons/SCons/Script/__init__.py", line 870, in _main
I have no knowledge of scons so this error means nothing to me.
I just installed with apt-get install scons
Which gave me version 0.96.1-1
back to ol' make.
Thanks. B.
PD-dev mailing list PD-dev@iem.at http://lists.puredata.info/listinfo/pd-dev
On Thu, Jun 23, 2005 at 01:04:52PM -0400, B. Bogart wrote:
Hey All,
I was exited to try the scons build system for externals but unfortunatly:
bbogart@insitu:~/pd-stuff/externals/build/linux$ scons
scons: *** No SConstruct file found. File "/usr/lib/scons/SCons/Script/__init__.py", line 870, in _main
I have no knowledge of scons so this error means nothing to me.
it means No SConstruct file found. theres one in .. relative to where you tried the command. since in theory its cross platform, but then ive never tried on 'doze or OSX..
I just installed with apt-get install scons
Which gave me version 0.96.1-1
back to ol' make.
Thanks. B.
PD-dev mailing list PD-dev@iem.at http://lists.puredata.info/listinfo/pd-dev
Hey Ix,
Ah... I don't recall the readme in build/linux saying anything about running directly from build...
So I gave it a whirl, fails on iem stuff:
In file included from ../iemlib/src/iem_mp3/sigmp3play.c:27, from src/mp3play~.c:1: ../iemlib/src/iem_mp3/iemlib.h:1:241: warning: extra tokens at end of #ifndef directive ../iemlib/src/iem_mp3/iemlib.h:9:7: warning: extra tokens at end of #endif directive ../iemlib/src/iem_mp3/iemlib.h:9:13: warning: no newline at end of file ../iemlib/src/iem_mp3/iemlib.h:1:1: unterminated #ifndef
sounds ugly...
How can I exclude certain externals from the scons build process?
Thanks!
b>
ix@replic.net wrote:
On Thu, Jun 23, 2005 at 01:04:52PM -0400, B. Bogart wrote:
Hey All,
I was exited to try the scons build system for externals but unfortunatly:
bbogart@insitu:~/pd-stuff/externals/build/linux$ scons
scons: *** No SConstruct file found. File "/usr/lib/scons/SCons/Script/__init__.py", line 870, in _main
I have no knowledge of scons so this error means nothing to me.
it means No SConstruct file found. theres one in .. relative to where you tried the command. since in theory its cross platform, but then ive never tried on 'doze or OSX..
I just installed with apt-get install scons
Which gave me version 0.96.1-1
back to ol' make.
Thanks. B.
PD-dev mailing list PD-dev@iem.at http://lists.puredata.info/listinfo/pd-dev
PD-dev mailing list PD-dev@iem.at http://lists.puredata.info/listinfo/pd-dev
B. Bogart wrote:
Hey Ix,
Ah... I don't recall the readme in build/linux saying anything about running directly from build...
So I gave it a whirl, fails on iem stuff:
In file included from ../iemlib/src/iem_mp3/sigmp3play.c:27, from src/mp3play~.c:1: ../iemlib/src/iem_mp3/iemlib.h:1:241: warning: extra tokens at end of #ifndef directive ../iemlib/src/iem_mp3/iemlib.h:9:7: warning: extra tokens at end of #endif directive ../iemlib/src/iem_mp3/iemlib.h:9:13: warning: no newline at end of file ../iemlib/src/iem_mp3/iemlib.h:1:1: unterminated #ifndef
sounds ugly...
as noted on pd-list, i have fixed the bad iemlib.h while this makes that special error go away, it will eventually stop on the next error.
How can I exclude certain externals from the scons build process?
"scons -k" ;-)
mfg.as.r IOhannes
Thanks!