
On 14/9/11 19:14, daniele rossi wrote:
using macport Version: 2.0.3
(...)
bzr branch lp:inkscape cd inkscape/packaging/macosx/
(...)
-bash-3.2$ ./osx-build.sh a c b i -s p
(...)
checking build system type... i386-apple-darwin9.8.0 checking host system type... i386-apple-darwin9.8.0
Is it correct to assume that you work on Mac OS X Leopard 10.5.8 (32bit) on an Intel Mac?
GTK+ backend target: quartz
See [1]
make all-recursive Making all in src make all-am CXX conn-avoid-ref.o In file included from helper/geom-curves.h:15, from conn-avoid-ref.cpp:23: ./2geom/hvlinesegment.h:1: error: stray ‘\239’ in program ./2geom/hvlinesegment.h:1: error: stray ‘\187’ in program ./2geom/hvlinesegment.h:1: error: stray ‘\191’ in program make[3]: *** [conn-avoid-ref.o] Error 1 make[2]: *** [all] Error 2 make[1]: *** [all-recursive] Error 1 make: *** [all] Error 2
Build failed
Based on googling the error message: for whatever reason your tool chain (GCC, CPP, libiconv, ... I don't know - I'm not a developer myself) seems to fail due to an encoding issue -> errors when encountering non-printable characters in a source file, or possibly the BOM - which that header file does have, AFAICT:
$ od -c src/2geom/hvlinesegment.h | head -n 1 0000000 357 273 277 / * * \n * \ f i l e \n $
The numbers in the error messages (\239, \187, \191) are supposed to be octal (?), but if that were true, why do they include the digits '8' and '9'?
- Compiler version:
checking GNU compiler version... 4.0.1
Have you tried using Apple's GCC 4.2.1 instead of Apple's GCC 4.0? (see attached patch for 'packaging/macosx/osx-build.sh')
- Environment:
PATH=/sw/bin:/sw/sbin:/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/local/bin:/opt/local/sbin:/usr/X11R6/bin
You have fink installed along with MacPorts: does it possibly interfere with your build tool chain from Xcode and MacPorts?
- File system/Unicode: Or the encoding issue is possibly related to the local file system and/or the bazaar configuration? http://wiki.bazaar.canonical.com/UnicodeSupport#Mac_OS_X_issues
Note: Building inkscape trunk with GTK+/X11 2.24.4 as well as with GTK+/Quartz 2.24.4 on Mac OS X 10.5.8 (i386) with Apple's GCC 4.2.1 works for me without above build failure. [2] AFAICT based on older log files, I did not encounter such errors either while still using Apple's GCC 4.0. I don't have (or had) Fink installed, the file system is 'Journaled HFS+', locale ($LANG) in the shell is 'en_US.UTF-8'.
~suv
[1] You are trying to build Inkscape.app with gtk2+no_x11+quartz? Please note that using Inkscape with the Quartz backend of GTK+ is WIP (unstable), currently (for trunk) has only been tested with an alternative packaging script (as far as I'm aware of), and requires patches to the sources as described in the related blueprint (at least those removing the ige-mac-* stuff, other ones have already been committed to trunk):
https://blueprints.launchpad.net/inkscape/+spec/inkscape-quartz https://bugs.launchpad.net/inkscape/+bug/738947 https://bugs.launchpad.net/inkscape/+bug/738973
[2] Caveat: I'm still on MacPorts 1.9.2 - postponing the upgrade to MacPorts 2.0.x because the release of Lion brought too many changes and I want to avoid any risks to break my current build system. I can't comment on whatever changes MacPorts 2.0.x might have introduced (in general, and with regard to fixes to make ports compatible for Lion).
=== modified file 'packaging/macosx/osx-build.sh' --- packaging/macosx/osx-build.sh 2010-04-20 12:22:54 +0000 +++ packaging/macosx/osx-build.sh 2011-09-15 06:55:34 +0000 @@ -170,6 +170,9 @@ # compiler arguments export CFLAGS="-O3 -Wall" export CXXFLAGS="$CFLAGS" +# use Apple's gcc 4.2 +export CC="/usr/bin/gcc-4.2" +export CXX="/usr/bin/g++-4.2"
if [[ "$UNIVERSAL" == "t" ]] then