[svn:parrot] r41296 - branches/kill_jit/config/auto

darbelo at svn.parrot.org darbelo at svn.parrot.org
Wed Sep 16 16:05:52 UTC 2009


Author: darbelo
Date: Wed Sep 16 16:05:46 2009
New Revision: 41296
URL: https://trac.parrot.org/parrot/changeset/41296

Log:
Undo the configure CAN_BUILD_CALL_FRAMES hack. This disables JIT frames again.

Modified:
   branches/kill_jit/config/auto/jit.pm

Modified: branches/kill_jit/config/auto/jit.pm
==============================================================================
--- branches/kill_jit/config/auto/jit.pm	Wed Sep 16 13:36:26 2009	(r41295)
+++ branches/kill_jit/config/auto/jit.pm	Wed Sep 16 16:05:46 2009	(r41296)
@@ -37,14 +37,6 @@
 
     my $osname  = $conf->data->get('osname');
     my $cpuarch = $conf->data->get('cpuarch');
-    my $nvsize  = $conf->data->get('nvsize');
-
-    if ( $nvsize == 8 && $cpuarch eq 'i386' && $osname ne 'darwin' ) {
-        $conf->data->set( cc_hasjit => '-DCAN_BUILD_CALL_FRAMES' );
-    }
-    else {
-        $conf->data->set( cc_hasjit => '' );
-    }
 
     $conf->data->set(
         jitarchname    => 'nojit',
@@ -53,6 +45,7 @@
         jitosname      => $osname,
         jitcapable     => 0,
         execcapable    => 0,
+        cc_hasjit      => '',
         TEMP_jit_o     => '',
         TEMP_exec_h    => '',
         TEMP_exec_o    => '',


More information about the parrot-commits mailing list