On Jun 7, 2:11 pm, Rick <[EMAIL PROTECTED]> wrote: > I'm curious as to why it works for you, Amit, and not me. > > $ CFLAGS="-O -g -arch i386 -arch ppc -isysroot /Developer/SDKs/ > MacOSX10.4u.sdk" LDFLAGS="-arch i386 -arch ppc" ../configure -- > prefix=/usr/local > > But if I add CPPFLAGS="-arch i386 -arch ppc", configure fails:
Try CXXFLAGS, not CPPFLAGS. $ CPPFLAGS=... CXXFLAGS=... LDFLAGS=... ./configure ... You can put the exact same stuff in CXXFLAGS as CPPFLAGS. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "macfuse-devel" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/macfuse-devel?hl=en -~----------~----~----~----~------~----~------~--~---
