Re: [Discuss-gnuradio] 2 issues with latest GIT master, at least on OSX 10.5.8
I just checked -- it's a MacPorts / SDL issue; I'll submit a bug report to them. Sorry! - MLD On Jun 3, 2010, at 9:37 AM, Johnathan Corgan wrote: On Thu, Jun 3, 2010 at 08:16, Michael Dickens wrote: Thanks, Johnathan, for those fixes in recent check-ins; between them and starting with a clean build, almost everything is taken care of ... one last item now: objc[56471]: Class SDLTranslatorResponder is implemented in both /opt/local/lib/libSDL-1.2.0.dylib and /opt/GNURadio/git/builds/master/gr-video-sdl/src/.libs/libgnuradio- video-sdl-3.3.1git.0.dylib. I really don't know what to make of this. When did it start happening? ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
Re: [Discuss-gnuradio] 2 issues with latest GIT master, at least on OSX 10.5.8
On Thu, Jun 3, 2010 at 08:16, Michael Dickens wrote: > Thanks, Johnathan, for those fixes in recent check-ins; between them and > starting with a clean build, almost everything is taken care of ... one last > item now: > objc[56471]: Class SDLTranslatorResponder is implemented in both > /opt/local/lib/libSDL-1.2.0.dylib and > /opt/GNURadio/git/builds/master/gr-video-sdl/src/.libs/libgnuradio-video-sdl-3.3.1git.0.dylib. I really don't know what to make of this. When did it start happening? Johnathan ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
Re: [Discuss-gnuradio] 2 issues with latest GIT master, at least on OSX 10.5.8
Thanks, Johnathan, for those fixes in recent check-ins; between them and starting with a clean build, almost everything is taken care of ... one last item now: $ make check [snip] Making check in gr-video-sdl Making check in src make check-am make check-TESTS objc[56471]: Class SDLTranslatorResponder is implemented in both /opt/ local/lib/libSDL-1.2.0.dylib and /opt/GNURadio/git/builds/master/gr- video-sdl/src/.libs/libgnuradio-video-sdl-3.3.1git.0.dylib. Using implementation from /opt/GNURadio/git/builds/master/gr-video-sdl/ src/.libs/libgnuradio-video-sdl-3.3.1git.0.dylib. objc[56471]: Class SDL_QuartzView is implemented in both /opt/local/ lib/libSDL-1.2.0.dylib and /opt/GNURadio/git/builds/master/gr-video- sdl/src/.libs/libgnuradio-video-sdl-3.3.1git.0.dylib. Using implementation from /opt/GNURadio/git/builds/master/gr-video-sdl/ src/.libs/libgnuradio-video-sdl-3.3.1git.0.dylib. objc[56471]: Class SDL_QuartzWindowDelegate is implemented in both / opt/local/lib/libSDL-1.2.0.dylib and /opt/GNURadio/git/builds/master/ gr-video-sdl/src/.libs/libgnuradio-video-sdl-3.3.1git.0.dylib. Using implementation from /opt/GNURadio/git/builds/master/gr-video-sdl/ src/.libs/libgnuradio-video-sdl-3.3.1git.0.dylib. objc[56471]: Class SDL_QuartzWindow is implemented in both /opt/local/ lib/libSDL-1.2.0.dylib and /opt/GNURadio/git/builds/master/gr-video- sdl/src/.libs/libgnuradio-video-sdl-3.3.1git.0.dylib. Using implementation from /opt/GNURadio/git/builds/master/gr-video-sdl/ src/.libs/libgnuradio-video-sdl-3.3.1git.0.dylib. [snip] but otherwise, 'make check' works. - MLD ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
Re: [Discuss-gnuradio] 2 issues with latest GIT master, at least on OSX 10.5.8
With the change in 'date' and using 'awk', I still got the python dyld load error, which I tracked down to the SWIG libraries. Doing 'make clean' there and then 'make' did the trick. !...@#$% fragile SWIG stuff. - MLD ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
Re: [Discuss-gnuradio] 2 issues with latest GIT master, at least on OSX 10.5.8
On Tue, Jun 1, 2010 at 14:46, Michael Dickens wrote: > Can we instead use something like: > > $ date -u +"%a, %d %b %Y %R:%S" This works. > Doing "grep -r BUILD_DATE ." from the top-level > directory, I think, shows that this variable isn't even used ... yes? It is in gnuradio-core/src/lib/general/gr_constants.cc.in, and ultimately shows up in the output of: $ gnuradio-config-info --builddate Mon, 31 May 2010 06:51:25 + I've got a new solution for the cut issue, using only shell script commands (we don't want the awk dependency), so with the two of these, I think we're set. Johnathan ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
Re: [Discuss-gnuradio] 2 issues with latest GIT master, at least on OSX 10.5.8
On Jun 1, 2010, at 1:52 PM, Johnathan Corgan wrote: From the manpage: -R, --rfc-2822 output date and time in RFC 2822 format. Example: Mon, 07 Aug 2006 12:34:56 -0600 Can we instead use something like: $ date -u +"%a, %d %b %Y %R:%S" which isn't quite RFC 2822 compliant since it's missing the following "+" (since '-u') was specified ... but it'll always be "+" so do we really need it there? Doing "grep -r BUILD_DATE ." from the top- level directory, I think, shows that this variable isn't even used ... yes? I think the above command is cross-OS compatible ... we can expand out %R if necessary. ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
Re: [Discuss-gnuradio] 2 issues with latest GIT master, at least on OSX 10.5.8
On Jun 1, 2010, at 2:38 PM, Johnathan Corgan wrote: $ echo '1-2-3-4' | awk -F- '{print NF}' 4 Can you test Darwin's 'awk' for this? the '$' line returns exactly '4' ... I guess that's good? ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
Re: [Discuss-gnuradio] 2 issues with latest GIT master, at least on OSX 10.5.8
On Tue, Jun 1, 2010 at 12:52, Johnathan Corgan wrote: > Feel free to suggest an alternative way of doing this test. My > script-fu is not my greatest asset :-) I have a solution for this using awk (thanks Jordan): $ echo '1-2-3-4' | awk -F- '{print NF}' 4 Can you test Darwin's 'awk' for this? Johnathan ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
Re: [Discuss-gnuradio] 2 issues with latest GIT master, at least on OSX 10.5.8
On Tue, Jun 1, 2010 at 12:02, Michael Dickens wrote: > BUILD_DATE=`date -R -u` > > > The '-u' works ("Display or set the date in UTC (Coordinated Universal) > time"), but there is no "-R" option to Darwin's built-in 'date'. What does > the '-R' option specify? >From the manpage: -R, --rfc-2822 output date and time in RFC 2822 format. Example: Mon, 07 Aug 2006 12:34:56 -0600 > (2) config/gr_git.m4:37 > > if test x`echo $GIT_DESCRIBE | cut -f 1- -d '-' --output-delimiter=' > ' | wc -w` = x4; then > > > It's the "--output-delimiter" that doesn't work with Darwin's 'cut'; this > version only handles single '-' parameters. What does this option do? >From the manpage: --output-delimiter=STRING use STRING as the output delimiter the default is to use the input delimiter In our case, we ask cut to delimit the output fields with spaces instead of the input delimiter '-'. This is so the 'wc' program can tell how many fields there are by counting words. We need to know if there are 3 or 4 '-' delimited fields in the output of `git describe`. Feel free to suggest an alternative way of doing this test. My script-fu is not my greatest asset :-) Johnathan ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
Re: [Discuss-gnuradio] 2 issues with latest GIT master, at least on OSX 10.5.8
(1) configure.ac:296 BUILD_DATE=`date -R -u` The '-u' works ("Display or set the date in UTC (Coordinated Universal) time"), but there is no "-R" option to Darwin's built-in 'date'. What does the '-R' option specify? Maybe there's another way to do it on Darwin that's more compatible with Linux (or, vice versa)? (2) config/gr_git.m4:37 if test x`echo $GIT_DESCRIBE | cut -f 1- -d '-' --output-delimiter=' ' | wc -w` = x4; then It's the "--output-delimiter" that doesn't work with Darwin's 'cut'; this version only handles single '-' parameters. What does this option do?Maybe there's another way to do it on Darwin that's more compatible with Linux (or, vice versa)? ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
Re: [Discuss-gnuradio] 2 issues with latest GIT master, at least on OSX 10.5.8
On Tue, Jun 1, 2010 at 10:31, Michael Dickens wrote: > Nothing has changed about my setup w/r.t. 'cut' or anything else. > > 'which cut' returns '/usr/bin/cut' which is supplied by Darwin. > > 'which date' returns '/bin/date' which is also Darwin -- this issue has been > around for a while now, well before rc0; I'm just getting around to > complaining :) Okay, we may need to make darwin specific variables for cut and date, and then use $CUT and $DATE in our scripts. I hope not. Johnathan ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
Re: [Discuss-gnuradio] 2 issues with latest GIT master, at least on OSX 10.5.8
Sorry for the double post; strange internet goings-on down here. Nothing has changed about my setup w/r.t. 'cut' or anything else. 'which cut' returns '/usr/bin/cut' which is supplied by Darwin. 'which date' returns '/bin/date' which is also Darwin -- this issue has been around for a while now, well before rc0; I'm just getting around to complaining :) ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
Re: [Discuss-gnuradio] 2 issues with latest GIT master, at least on OSX 10.5.8
On Tue, Jun 1, 2010 at 09:50, Michael Dickens wrote: > checking git description of current commit... cut: illegal option -- - > ../../configure: line 3672: test: too many arguments > v3.3.0-rc3-0-g944a8b6f This is from config/gr_git.m4, which I was updated in rc3 with processing to extract various parameters from the git describe output. My system has 'cut' from the GNU Core Utilities 7.4. Is OSX using something different by default? > date: illegal option -- R > usage: date [-jnu] [-d dst] [-r seconds] [-t west] [-v[+|-]val[ymwdHMS]] ... > [-f fmt date | [[[mm]dd]HH]MM[[cc]yy][.ss]] [+format] Nothing has changed here in the code since rc2. > line 16, in swig_import_helper > import _gnuradio_swig_py_runtime > ImportError: > dlopen(/opt/GNURadio/git/builds/master/gnuradio-core/src/lib/swig/.libs/_gnuradio_swig_py_runtime.so, > 10): Library not loaded: /usr/local/lib/libgnuradio-core.0.dylib > Referenced from: > /opt/GNURadio/git/builds/master/gnuradio-core/src/lib/swig/.libs/_gnuradio_swig_py_runtime.so > Reason: image not found This may be a downstream error that would go away when the upstream issue is fixed. Did anything else change in your test environment? Johnathan ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio