[commit] r2589 - tweak Newspeak install (prune .map file).

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[commit] r2589 - tweak Newspeak install (prune .map file).

commits-3
 
Author: eliot
Date: 2012-08-24 13:42:26 -0700 (Fri, 24 Aug 2012)
New Revision: 2589

Modified:
   branches/Cog/nscogbuild/cygwinbuild/installer/Makefile
   branches/Cog/nscogbuild/cygwinbuild/installer/links
Log:
tweak Newspeak install (prune .map file).


Modified: branches/Cog/nscogbuild/cygwinbuild/installer/Makefile
===================================================================
--- branches/Cog/nscogbuild/cygwinbuild/installer/Makefile 2012-08-24 20:33:58 UTC (rev 2588)
+++ branches/Cog/nscogbuild/cygwinbuild/installer/Makefile 2012-08-24 20:42:26 UTC (rev 2589)
@@ -38,7 +38,7 @@
 
 $(VM_EXECUTABLE_MAP): ../build/vm/$(VM_EXECUTABLE_MAP)
  rm -f $@
- cp $< $@
+ grep " [tT] " $< | grep -v ' t \.text$' >$@
 
 $(VM_EXECUTABLE_MANIFEST): ../build/vm/$(VM_EXECUTABLE_MANIFEST)
  rm -f $@

Modified: branches/Cog/nscogbuild/cygwinbuild/installer/links
===================================================================
--- branches/Cog/nscogbuild/cygwinbuild/installer/links 2012-08-24 20:33:58 UTC (rev 2588)
+++ branches/Cog/nscogbuild/cygwinbuild/installer/links 2012-08-24 20:42:26 UTC (rev 2589)
@@ -1,11 +1,9 @@
 #!/bin/sh
 if [ "$1" = rm -o "$1" = mk ]; then
- rm SqueakV41.sources nsvm.exe nsvm.map
+ rm SqueakV41.sources
 fi
 if [ "$1" = mk ]; then
  ln ~/Squeak/SqueakV41.sources .
- ln ../build/vm/nsvm.exe .
- grep " [tT] " ../build/vm/nsvm.map | grep -v ' t \.text$' >nsvm.map
 fi
 if [ \( "$1" != rm \) -a \( "$1" != mk \) ]; then
  echo usage: $0 'mk|rm'