diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-08-19 21:18:04 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-08-19 21:18:04 (GMT) |
commit | 25a68e1f44764721996ed36ca11c046bd2c480a9 (patch) | |
tree | de07c19bf406eaf7179fad82bc3feb6e92975ff1 /Misc | |
parent | a39ef869d57f931669df8fbe94d1ee1fe5b858f8 (diff) | |
download | cpython-25a68e1f44764721996ed36ca11c046bd2c480a9.zip cpython-25a68e1f44764721996ed36ca11c046bd2c480a9.tar.gz cpython-25a68e1f44764721996ed36ca11c046bd2c480a9.tar.bz2 |
Removed NEXT-NOTES, the NeXT is no longer supported.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEXT-NOTES | 81 | ||||
-rw-r--r-- | Misc/README | 1 |
2 files changed, 0 insertions, 82 deletions
diff --git a/Misc/NEXT-NOTES b/Misc/NEXT-NOTES deleted file mode 100644 index f907abf..0000000 --- a/Misc/NEXT-NOTES +++ /dev/null @@ -1,81 +0,0 @@ -Subject: dynamic loading on NeXTSTEP -From: horst@il.us.swissbank.com (Ted Horst) -To: python-list@cwi.nl -Date: Fri, 6 Sep 1996 15:02:26 GMT -X-Newsgroups: comp.lang.python -X-Organization: Swiss Bank Corporation CM&T Division - - -These are the steps that I took to get dynamic loading working under NeXTSTEP -(3.3 m68k, i486) for Python1.4beta3 (including the Numeric stuff). -Unfortunately, I don't know anything about the configure scripts, so I don't -know how to fix these things properly, but this works for me. I would be -interested in how other people have done this as well. - -/configure --prefix=/home/horst/Unix --with-readline=/home/horst/Unix/lib ---with-thread --with-next-archs='m68k i486' --without-libm - -edit Python/importdl.c - under: - #ifdef USE_RLD - add: - #define SHORT_EXT ".a" - #define LONG_EXT "module.a" - -edit Modules/Setup - uncomment *shared* - (other editing as desired) - -make (just to create the Makefiles) - -edit Makefiles - change all AR= ar to AR = libtool - change all $(AR) cr ... to $(AR) -o ... - in Modules/Makefile change: - libm = - LDSHARED= cc -r -nostdlib $(CFLAGS) - CCSHARED= -r -nostdlib - LINKFORSHARED= -u libsys_s - -make "OPT=-O3 -fschedule-insns2 -ObjC -arch m68k -arch i486" - - -Ted Horst -(not speaking for Swissbank) - - -Subject: Re: dynamic loading on NeXTSTEP -From: horst@il.us.swissbank.com (Ted Horst) -To: python-list@cwi.nl -Date: Fri, 6 Sep 1996 16:27:32 GMT -X-Newsgroups: comp.lang.python -X-Organization: Swiss Bank Corporation CM&T Division - -Ted Horst writes -> -> These are the steps that I took to get dynamic loading working under NeXTSTEP -> (3.3 m68k, i486) for Python1.4beta3 (including the Numeric stuff). - -<SNIP> - -> make "OPT=-O3 -fschedule-insns2 -ObjC -arch m68k -arch i486" -> -> Ted Horst -> (not speaking for Swissbank) - -Wow, I guess I was overzealous with the optimizations. Upon further -testing, I discovered that the Numeric stuff did not work properly on -Intel machines, but did work properly on m68k. I dropped the -optimization to -O2 (leaving out the -fschedule-insns2), and it seems -to behave properly on both architectures now. - -So, - -make "OPT=-O2 -ObjC -arch m68k -arch i486" - -looks like a better choice. - -Sorry for the misguidance, - -Ted Horst -(still not speaking for SwissBank) diff --git a/Misc/README b/Misc/README index c36e190..d259d7c 100644 --- a/Misc/README +++ b/Misc/README @@ -20,7 +20,6 @@ HYPE More hype about Python Makefile Used for administrative chores like cleaning up Makefile.pre.in Generic Makefile template for building extensions NEWS News for this release -NEXT-NOTES Porting notes for NeXT PURIFY.README Information for Purify users Porting Mini-FAQ on porting to new platforms README The file you're reading now |