[svn:parrot] r48809 - trunk/tools/dev

gerd at svn.parrot.org gerd at svn.parrot.org
Mon Sep 6 09:59:03 UTC 2010


Author: gerd
Date: Mon Sep  6 09:59:02 2010
New Revision: 48809
URL: https://trac.parrot.org/parrot/changeset/48809

Log:
let "pbc_to_exe" compile with the same flags then the other programs are compiled

Modified:
   trunk/tools/dev/pbc_to_exe.pir

Modified: trunk/tools/dev/pbc_to_exe.pir
==============================================================================
--- trunk/tools/dev/pbc_to_exe.pir	Mon Sep  6 00:35:40 2010	(r48808)
+++ trunk/tools/dev/pbc_to_exe.pir	Mon Sep  6 09:59:02 2010	(r48809)
@@ -578,10 +578,11 @@
     .param int    install
 
     $P0 = '_config'()
-    .local string cc, ccflags, cc_o_out, osname, build_dir, slash
+    .local string cc, ccflags, optimize, cc_o_out, osname, build_dir, slash
     .local string installed, includepath, versiondir
     cc        = $P0['cc']
     ccflags   = $P0['ccflags']
+    optimize  = $P0['optimize']
     cc_o_out  = $P0['cc_o_out']
     osname    = $P0['osname']
     build_dir = $P0['build_dir']
@@ -615,6 +616,8 @@
     compile .= pathquote
     compile .= ' '
     compile .= ccflags
+    compile .= ' '
+    compile .= optimize
     compile .= ' -c '
     compile .= cfile
 


More information about the parrot-commits mailing list