cvsuser     02/10/28 06:54:16

  Modified:    .        pbc2c.pl
               config/gen/makefiles root.in
  Log:
  fixed native compiling
  
  Revision  Changes    Path
  1.29      +1 -2      parrot/pbc2c.pl
  
  Index: pbc2c.pl
  ===================================================================
  RCS file: /cvs/public/parrot/pbc2c.pl,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -w -r1.28 -r1.29
  --- pbc2c.pl  27 Oct 2002 18:26:39 -0000      1.28
  +++ pbc2c.pl  28 Oct 2002 14:54:14 -0000      1.29
  @@ -8,7 +8,7 @@
   # This program is free software. It is subject to the same license
   # as the Parrot interpreter.
   #
  -# $Id: pbc2c.pl,v 1.28 2002/10/27 18:26:39 leo Exp $
  +# $Id: pbc2c.pl,v 1.29 2002/10/28 14:54:14 leo Exp $
   #
   
   use strict;
  @@ -232,7 +232,6 @@
       Parrot_init(interpreter, (void*) &dummy_var);
   
       run_native = run_compiled;
  -    interpreter = make_interpreter(NO_FLAGS);
       pf          = PackFile_new();
   
       if( !PackFile_unpack(interpreter, pf, (opcode_t *)program_code,
  
  
  
  1.49      +3 -2      parrot/config/gen/makefiles/root.in
  
  Index: root.in
  ===================================================================
  RCS file: /cvs/public/parrot/config/gen/makefiles/root.in,v
  retrieving revision 1.48
  retrieving revision 1.49
  diff -u -w -r1.48 -r1.49
  --- root.in   24 Oct 2002 14:14:12 -0000      1.48
  +++ root.in   28 Oct 2002 14:54:16 -0000      1.49
  @@ -315,8 +315,9 @@
   
   examples/mops/mops$(O) : examples/mops/mops.c
   
  -examples/mops/mops${exe} : examples/mops/mops$(O) platform$(O)
  -     $(LINK) $(LINKFLAGS) ${ld_out}examples/mops/mops${exe} examples/mops/mops$(O) 
platform$(O) $(C_LIBS)
  +examples/mops/mops${exe} : examples/mops/mops$(O)
  +     $(LINK) $(LINKFLAGS) ${ld_out}examples/mops/mops${exe} \
  +     examples/mops/mops$(O) blib/lib/libparrot$(A) $(C_LIBS)
   
   
   ###############################################################################
  
  
  


Reply via email to