cvsuser 03/10/18 16:51:12
Modified: . MANIFEST
config/gen/makefiles root.in
languages/imcc cfg.c
Added: config/init/hints hpux.pl
Log:
Make HP/UX build better
Revision Changes Path
1.476 +1 -0 parrot/MANIFEST
Index: MANIFEST
===================================================================
RCS file: /cvs/public/parrot/MANIFEST,v
retrieving revision 1.475
retrieving revision 1.476
diff -u -w -r1.475 -r1.476
--- MANIFEST 18 Oct 2003 22:49:18 -0000 1.475
+++ MANIFEST 18 Oct 2003 23:51:05 -0000 1.476
@@ -154,6 +154,7 @@
config/init/hints/cygwin.pl []
config/init/hints/darwin.pl []
config/init/hints/freebsd.pl []
+config/init/hints/hpux.pl []
config/init/hints/linux.pl []
config/init/hints/mswin32.pl []
config/init/hints/openbsd.pl []
1.152 +1 -1 parrot/config/gen/makefiles/root.in
Index: root.in
===================================================================
RCS file: /cvs/public/parrot/config/gen/makefiles/root.in,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -w -r1.151 -r1.152
--- root.in 18 Oct 2003 12:28:15 -0000 1.151
+++ root.in 18 Oct 2003 23:51:08 -0000 1.152
@@ -22,7 +22,7 @@
LINK = ${link}
LD = ${ld}
LD_SHARED = ${ld_shared}
-TOUCH = $(PERL) -e ${PQ}open(A,q{>>},$$_) or die foreach @ARGV${PQ}
+TOUCH = $(PERL) -e ${PQ}open(A,q{>>$$_}) or die foreach @ARGV${PQ}
YACC = ${yacc}
LEX = ${lex}
1.1 parrot/config/init/hints/hpux.pl
Index: hpux.pl
===================================================================
my $libs = Configure::Data->get('libs');
if ( $libs !~ /-lpthread/ ) {
$libs .= ' -lpthread';
}
Configure::Data->set(
libs => $libs,
);
1.45 +3 -3 parrot/languages/imcc/cfg.c
Index: cfg.c
===================================================================
RCS file: /cvs/public/parrot/languages/imcc/cfg.c,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -w -r1.44 -r1.45
--- cfg.c 8 Sep 2003 11:53:06 -0000 1.44
+++ cfg.c 18 Oct 2003 23:51:12 -0000 1.45
@@ -316,7 +316,7 @@
}
-void
+static void
bb_add_edge(Parrot_Interp interpreter, Basic_block *from, Basic_block *to) {
Edge *e;
@@ -519,7 +519,7 @@
* the var is alive.
*/
-void
+static void
analyse_life_block(Parrot_Interp interpreter, Basic_block* bb, SymReg* r) {
Instruction* ins, *special;
Life_range* l;
@@ -961,7 +961,7 @@
free_loops(interpreter);
}
-Basic_block*
+static Basic_block*
make_basic_block(Parrot_Interp interpreter, Instruction* ins) {
Basic_block *bb;
int n;