> > FOSSstdcxx - seems to be caused by the flags > passed > > by spec, as it compiles just fine using the > classic > > configure&&make > > caused by combination of -xalias_level=compatible and > -xO3. Now tracked as > http://defect.opensolaris.org/bz/show_bug.cgi?id=9120. > I'll commit fix as soon as bionicmutton is online.
done > > FOSSffmpeg - neither the kde nor the current > > SFEffmpeg compile, seems to be a problem in the > > detection of compiler by the configure script, > which > > then passes bad flags > > current ffmpeg requires decent x264. so far I've > refreshed x264, but the new 264 seems to be hitting a > bug in the classic sun studio :-O building the old ffmpeg hits a bug in SSE, I filed it at http://defect.opensolaris.org/bz/show_bug.cgi?id=9127 this patch of the Solaris-FFMPEG... hairball workarounds it: --- Solaris/configure.sh.orig 2009-05-24 13:18:33.077572570 +0200 +++ Solaris/configure.sh 2009-05-24 13:18:46.411629264 +0200 @@ -12,7 +12,7 @@ export CPPFLAGS="$CPPFLAGS -DHAVE_FAST_UNALIGNED=1" export CFLAGS=$(echo $CFLAGS | sed -e 's/-xO3/-xO4/g') # CFLAGS SETUP - export CFLAGS="$CFLAGS -Wu,-gnu_compat=1 -W0,-xgnuasm=1 -Wu,-no_a2lf" + export CFLAGS="$CFLAGS -Wu,-gnu_compat=1 -W0,-xgnuasm=1" else export CFLAGS=$(echo $CFLAGS | sed -e 's/-xO4/-xO5/g') # CFLAGS SETUP (unfortunately the old ffmpeg does not build with the new x264, so I'll revert the x264 change once I figure out how to do it) -- This message posted from opensolaris.org
