diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-09-08 21:18:10 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-09-08 21:18:10 +0000 |
commit | 5869b1f143426909d25f97cd2df1d47cc4159ed3 (patch) | |
tree | 9b927686a93b1ef70a66c816e6d9b52e8f62b467 /x2p | |
parent | 86a59229552fc742ed09795227799fb41537f06f (diff) | |
download | perl-5869b1f143426909d25f97cd2df1d47cc4159ed3.tar.gz |
Do away with memory models cruft. Sorry, PDP users.
p4raw-id: //depot/perl@7041
Diffstat (limited to 'x2p')
-rwxr-xr-x | x2p/Makefile.SH | 7 | ||||
-rwxr-xr-x | x2p/cflags.SH | 4 |
2 files changed, 4 insertions, 7 deletions
diff --git a/x2p/Makefile.SH b/x2p/Makefile.SH index be09401fbe..a0ba96a360 100755 --- a/x2p/Makefile.SH +++ b/x2p/Makefile.SH @@ -34,10 +34,7 @@ cat >Makefile <<!GROK!THIS! CC = $cc BYACC = $byacc LDFLAGS = $ldflags -SMALL = $small -LARGE = $large $split -# XXX Perl malloc temporarily unusable (declaration collisions with -# stdlib.h) +# XXX Perl malloc temporarily unusable (declaration collisions with stdlib.h) #mallocsrc = $mallocsrc #mallocobj = $mallocobj shellflags = $shellflags @@ -129,7 +126,7 @@ a2p.c: a2p.y a2p$(OBJ_EXT): a2p.c a2py.c a2p.h EXTERN.h util.h INTERN.h \ ../handy.h ../config.h str.h hash.h - $(CCCMD) $(LARGE) a2p.c + $(CCCMD) a2p.c clean: rm -f a2p *$(OBJ_EXT) $(plexe) $(plc) $(plm) diff --git a/x2p/cflags.SH b/x2p/cflags.SH index b5ef9170b9..dcd97a1e79 100755 --- a/x2p/cflags.SH +++ b/x2p/cflags.SH @@ -84,8 +84,8 @@ for file do ccflags="`echo $ccflags | sed -e 's/-DMULTIPLICITY//'`" - echo "$cc -c $ccflags $optimize $large $split" - eval "$also "'"$cc -c $ccflags $optimize $large $split"' + echo "$cc -c $ccflags $optimize" + eval "$also "'"$cc -c $ccflags $optimize"' . $TOP/config.sh |