[CSOUND-DEV:4744] RE: Another scons oddity
Date | 2004-05-17 14:59 |
From | "gogins@pipeline.com" |
Subject | [CSOUND-DEV:4744] RE: Another scons oddity |
-Bdynamic certainly works for me. This may be a gcc version issue. The way you had it broke the build for me; the way I had it seems to break the build for you. Original Message: ----------------- From: jpff@codemist.co.uk Date: Mon, 17 May 2004 08:57:23 +0100 To: csound-dev@eartha.mills.edu Subject: [CSOUND-DEV:4740] Another scons oddity It seems to be setting a prefix which has no meaning. Any ideas what this is about? gcc: file path prefix `dynamic' never used gcc -Bdynamic --no-allow-shlib-undefined -o srconv util2/dnoise.dir/srconv.o -L. -L. -L. -L/usr/lib -L/usr/local/lib -lustub -lsndfile -lstdc++ -lpthread -lm -ldl gcc: file path prefix `dynamic' never used Seems that one has to set makeDynamic=1 explicitly again ==John ffitch -------------------------------------------------------------------- mail2web - Check your email from the web at http://mail2web.com/ . |
Date | 2004-05-17 18:47 |
From | jpff@codemist.co.uk |
Subject | [CSOUND-DEV:4747] RE: Another scons oddity |
-Bdynamic is an option to the loader, but -B is a valid option to the compiler. I have modified SConstruct to use -Wl,-Bdynamic which works for me (tm). Let me know what it does for you. I have also restored the signal handler so I can run FLTK. That may cause you problem? I have run realtime audio on the M-Audio machine as well as the laptop so I am reasonably happy that the ALSA/PA stuff is now usable if tedious. Could introduce a -o dac:stereo format to select .asoundrc plugin "stereo". That is tedious as well! Various other minor changes to remove warning messages. ==John ffitch |