diff options
author | Mark Wielaard <mark@klomp.org> | 2006-01-10 10:39:54 +0000 |
---|---|---|
committer | Mark Wielaard <mark@klomp.org> | 2006-01-10 10:39:54 +0000 |
commit | 987754f0c30a5eed384da4b28094954c84e55de0 (patch) | |
tree | 35df0386d3d77d8fb31aaf201c4835774da72942 | |
parent | 604c3c9713e38e0385431135a3524282a6284ada (diff) | |
download | classpath-987754f0c30a5eed384da4b28094954c84e55de0.tar.gz |
* lib/Makefile.am (GCJX): Add -g to get linenumber info.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib/Makefile.am | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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 |