summaryrefslogtreecommitdiff
path: root/java/jikes/files/patch-aa
blob: 649e3bf7b5522fcf1f5f8bc4ed1fd2fe1869cba1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
*** jikes/src/Makefile.orig	Wed Dec  9 21:59:34 1998
--- jikes/src/Makefile	Wed Dec  9 22:02:10 1998
***************
*** 131,136 ****
--- 131,152 ----
  O=o
  SYSOBJECTS=
  
+ # g++ definitions (FreeBSD)
+ CC=g++
+ # use -W to see warnings (should review from time to time)
+ CCREQUIREDFLAGS=-DGNU_LIBC5 -DUNIX -funsigned-char  -c -DTYPE_bool -ansi -I.
+ CCDEBUGFLAGS=-DTEST -g
+ CCOPTFLAGS=-O2
+ CCFLAGS=$(CCREQUIREDFLAGS) $(CCDEBUGFLAGS)
+ CCFLAGS=$(CCREQUIREDFLAGS) $(CCOPTFLAGS)
+ ERASE=rm -f
+ EXECUTABLE=jikes
+ LD=g++
+ LDDEBUGFLAGS=-g
+ LDFLAGS=-L. -o$(EXECUTABLE)
+ O=o
+ SYSOBJECTS=
+ 
  
  OBJECTS=jikes.$(O) scanner.$(O) code.$(O) zip.$(O) unzip.$(O) ast.$(O) diagnose.$(O) \
  	parser.$(O) lpginput.$(O) lcase.$(O) javaact.$(O) error.$(O) set.$(O) symbol.$(O) \
--- jikes/src/jikes.cpp.orig	Tue Dec 15 21:46:33 1998
+++ jikes/src/jikes.cpp	Tue Dec 15 21:47:17 1998
@@ -75,7 +75,7 @@
              << "+U                 do full dependence check including Zip and Jar files\n"
              << "+V                 generate veracious listing\n"
              << "+Z                 treat cautions as errors\n"
-             << "\nVersion 0.41 (01 Dec 98)"
+             << "\nVersion 0.41-FreeBSD-ae (15 Dec 98)"
              << " by Philippe Charles and David Shields, IBM Research.\n";
         cerr << "Please report problems to shields@watson.ibm.com.\n" ;
     cerr << "or via browser at http://www.ibm.com/research/jikes\n";