Quoting Sébastien Janas <[EMAIL PROTECTED]>: > Hi Julien, > > How can I run the gcc command without the -arch ppc ? I just do >
Unfortunately I could not find a way to prevent the stupid setup.py script of python's distutils from trying to build a universal binary, so the solution is to compile the python module "by hand" : go in the getfem++ directory, and run these commands: make (the build fails on the python error) cd interface/src/python GCC -shared ././getfem_python.o -L../../../src/.libs -L../.libs -lgetfemint -lstdc++ -lm -lgetfem -o ./_getfem.so (the module should now build since I removed the -arch xxxx options) cd ../../.. make (the build should complete) > >./configure --disable-python > >make > >sudo make install > > I don't install the sources by myself... > > Thanks for your help, > > Best regards, > > Sébasten > > Le 19-mai-08 à 01:23, Julien Pommier a écrit : > > > Hi Sébastien, > > > > Try running the gcc command without the "-arch ppc" option, I think > > it is > > failing because it is trying to build a universal binary while > > getfem was > > compiled as an intel-only binary (or you can build getfem as a > > universal > > binary, but this will increase the compilation time) > > > > Julien > > > > Quoting Sébastien Janas <[EMAIL PROTECTED]>: > > > >> Hi all, > >> > >> I want to install python interface of getfemm++ on a macbook pro with > >> mac os 10.5 (leopard). > >> > >> The ./configure is OK, but with the make I have > >> > >> GCC -shared -arch i386 -arch ppc ././getfem_python.o -L../../../ > >> src/.libs -L../.libs -lgetfemint -lstdc++ -lm -lgetfem -o ./ > >> _getfem.so > >> ld: warning in ../.libs/libgetfemint.a, file is not of required > >> architecture > >> > >> In fact, my macbook have a intel processor, how can I solve this ? > >> > >> Best regards, > >> > >> Sebastien > >> > >> _______________________________________________ > >> Getfem-users mailing list > >> [email protected] > >> https://mail.gna.org/listinfo/getfem-users > >> > > > > > > > > > > _______________________________________________ Getfem-users mailing list [email protected] https://mail.gna.org/listinfo/getfem-users
