summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2006-01-10 10:39:54 +0000
committerMark Wielaard <mark@klomp.org>2006-01-10 10:39:54 +0000
commit987754f0c30a5eed384da4b28094954c84e55de0 (patch)
tree35df0386d3d77d8fb31aaf201c4835774da72942
parent604c3c9713e38e0385431135a3524282a6284ada (diff)
downloadclasspath-987754f0c30a5eed384da4b28094954c84e55de0.tar.gz
* lib/Makefile.am (GCJX): Add -g to get linenumber info.
-rw-r--r--ChangeLog4
-rw-r--r--lib/Makefile.am2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index fcc24674e..4844b56b1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-01-10 Mark Wielaard <mark@klomp.org>
+
+ * lib/Makefile.am (GCJX): Add -g to get linenumber info.
+
2006-01-10 Jeroen Frijters <jeroen@frijters.net>
PR classpath/25727
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 4ed6f429b..408d3ebe4 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -26,7 +26,7 @@ if FOUND_KJC
JAVAC = $(KJC) -classpath .:$(USER_CLASSLIB) -d . @classes
else
if FOUND_GCJX
-JAVAC = $(GCJX) -encoding UTF-8 -classpath .:$(USER_CLASSLIB) -d . @classes
+JAVAC = $(GCJX) -g -encoding UTF-8 -classpath .:$(USER_CLASSLIB) -d . @classes
else
if FOUND_ECJ
JAVAC = $(ECJ) -source 1.4 -encoding UTF-8 -warn:-deprecation,serial,unused -proceedOnError -bootclasspath '' -classpath $(compile_classpath) -d . @classes