Re: [Chicken-users] Error building universal on 10.5

2008-03-03 Thread Jim Ursetto
On 2/29/08, Greg <[EMAIL PROTECTED]> wrote:
> On Feb 29, 2008, at 7:45 PM, Heinrich Taube wrote:
> > export MACOSX_DEPLOYMENT_TARGET=10.4
> > make PLATFORM=macosx ARCH=universal

> Thanks! That fixed it. Shouldn't this then be added to the OS X
> Makefile? I don't know if any of chicken's maintainers read this
> list...

It's in the README, in the universal build section.  Quote:
-
On Leopard (10.5), an extra step is required before `make':

   export MACOSX_DEPLOYMENT_TARGET=10.4
   make PLATFORM=macosx ARCH=universal
-

Jim


___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Error building universal on 10.5

2008-03-02 Thread Elf


no, it shouldnt be added.  its not the right fix for the problem.
the proper fix for this problem is to symlink two libraries, NOT to use the
devel target, which mucks around with things later.

and afaik, all of the maintainers read all the lists. :)

-elf

On Fri, 29 Feb 2008, Greg wrote:

Thanks!  That fixed it.  Shouldn't this then be added to the OS X Makefile? 
I don't know if any of chicken's maintainers read this list...



On Feb 29, 2008, at 7:45 PM, Heinrich Taube wrote:


dont know if this will help but i do this when i build universal on 10.5.1:

export MACOSX_DEPLOYMENT_TARGET=10.4
make PLATFORM=macosx ARCH=universal




___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users




___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Error building universal on 10.5

2008-03-01 Thread Alan Post
On Fri, Feb 29, 2008 at 08:01:58PM -0500, Greg wrote:
> Thanks!  That fixed it.  Shouldn't this then be added to the OS X  
> Makefile?  I don't know if any of chicken's maintainers read this  
> list...
> 

Setting this variable in the Makefile seems to me to be a bit
fragile.  I imagine there would be some people trying to build on an
old version of OSX, or of course trying to build on future version
of OSX.

I don't really have a concrete solution to offer, however.  Doing a
quick bit of research finds this technical note:

  http://developer.apple.com/technotes/tn2002/tn2064.html

Which describes what is going on with this variable.

-Alan

> 
> On Feb 29, 2008, at 7:45 PM, Heinrich Taube wrote:
> 
> >dont know if this will help but i do this when i build universal on  
> >10.5.1:
> >
> >export MACOSX_DEPLOYMENT_TARGET=10.4
> >make PLATFORM=macosx ARCH=universal
> 

-- 
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?


___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Error building universal on 10.5

2008-02-29 Thread Greg
Thanks!  That fixed it.  Shouldn't this then be added to the OS X  
Makefile?  I don't know if any of chicken's maintainers read this  
list...



On Feb 29, 2008, at 7:45 PM, Heinrich Taube wrote:

dont know if this will help but i do this when i build universal on  
10.5.1:


export MACOSX_DEPLOYMENT_TARGET=10.4
make PLATFORM=macosx ARCH=universal




___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Error building universal on 10.5

2008-02-29 Thread Heinrich Taube
dont know if this will help but i do this when i build universal on  
10.5.1:


export MACOSX_DEPLOYMENT_TARGET=10.4
make PLATFORM=macosx ARCH=universal

On Feb 29, 2008, at 6:30 PM, Greg wrote:

Hi, I tried building chicken 3.0.0 from source on Mac OS X 10.5.2  
using the following command:



make PLATFORM=macosx ARCH=universal



And got the following error:

gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk - 
dynamiclib -compatibility_version 1 -current_version 1.0 - 
install_name libchicken.dylib  \
	  -o libchicken.dylib library.o eval.o extras.o lolevel.o utils.o  
tcp.o srfi-1.o srfi-4.o srfi-13.o srfi-14.o srfi-18.o posixunix.o  
regex.o regex-extras.o scheduler.o profiler.o stub.o match.o  
runtime.o pcre/pcre_compile.o pcre/pcre_config.o pcre/ 
pcre_dfa_exec.o pcre/pcre_exec.o pcre/pcre_fullinfo.o pcre/ 
pcre_get.o pcre/pcre_globals.o pcre/pcre_info.o pcre/ 
pcre_maketables.o pcre/pcre_newline.o pcre/pcre_ord2utf8.o pcre/ 
pcre_refcount.o pcre/pcre_study.o pcre/pcre_tables.o pcre/ 
pcre_try_flipped.o pcre/pcre_ucp_searchfuncs.o pcre/ 
pcre_valid_utf8.o pcre/pcre_version.o pcre/pcre_xclass.o pcre/ 
pcre_chartables.o apply-hack.universal.o -lm

ld: library not found for -ldylib1.10.5.o
collect2: ld returned 1 exit status
ld: library not found for -ldylib1.10.5.o
collect2: ld returned 1 exit status
lipo: can't open input file: /var/folders/Bl/BlVb4pxXGg8tGWkxFze1+U+ 
++TI/-Tmp-//ccVnFkTU.out (No such file or directory)

make[1]: *** [libchicken.dylib] Error 1
make: *** [all] Error 2


Help?

Thanks,

- Greg


___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users



___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users


[Chicken-users] Error building universal on 10.5

2008-02-29 Thread Greg
Hi, I tried building chicken 3.0.0 from source on Mac OS X 10.5.2  
using the following command:



make PLATFORM=macosx ARCH=universal



And got the following error:

gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.4u.sdk - 
dynamiclib -compatibility_version 1 -current_version 1.0 - 
install_name libchicken.dylib  \
	  -o libchicken.dylib library.o eval.o extras.o lolevel.o utils.o  
tcp.o srfi-1.o srfi-4.o srfi-13.o srfi-14.o srfi-18.o posixunix.o  
regex.o regex-extras.o scheduler.o profiler.o stub.o match.o  
runtime.o pcre/pcre_compile.o pcre/pcre_config.o pcre/ 
pcre_dfa_exec.o pcre/pcre_exec.o pcre/pcre_fullinfo.o pcre/ 
pcre_get.o pcre/pcre_globals.o pcre/pcre_info.o pcre/ 
pcre_maketables.o pcre/pcre_newline.o pcre/pcre_ord2utf8.o pcre/ 
pcre_refcount.o pcre/pcre_study.o pcre/pcre_tables.o pcre/ 
pcre_try_flipped.o pcre/pcre_ucp_searchfuncs.o pcre/ 
pcre_valid_utf8.o pcre/pcre_version.o pcre/pcre_xclass.o pcre/ 
pcre_chartables.o apply-hack.universal.o -lm

ld: library not found for -ldylib1.10.5.o
collect2: ld returned 1 exit status
ld: library not found for -ldylib1.10.5.o
collect2: ld returned 1 exit status
lipo: can't open input file: /var/folders/Bl/BlVb4pxXGg8tGWkxFze1+U++ 
+TI/-Tmp-//ccVnFkTU.out (No such file or directory)

make[1]: *** [libchicken.dylib] Error 1
make: *** [all] Error 2


Help?

Thanks,

- Greg


___
Chicken-users mailing list
Chicken-users@nongnu.org
http://lists.nongnu.org/mailman/listinfo/chicken-users