diff options
author | Tom Tromey <tromey@redhat.com> | 2006-03-29 20:24:36 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2006-03-29 20:24:36 +0000 |
commit | 04d9c48d80938cf04f73b1cf16abc61b771c13be (patch) | |
tree | 7814c78f0f56eba08e9f4911854132eed32e5680 /examples/Makefile.am | |
parent | f6b6b8741a2d960b306f0620af89194c07742619 (diff) | |
download | classpath-04d9c48d80938cf04f73b1cf16abc61b771c13be.tar.gz |
PR gcc/26901:
* tools/Makefile.am (JCOMPILER): Added encoding options.
* examples/Makefile.am (JCOMPILER): Added encoding options.
Diffstat (limited to 'examples/Makefile.am')
-rw-r--r-- | examples/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am index bf427ee41..1b16c586b 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -2,16 +2,16 @@ # Setup the compiler to use the GNU Classpath library we just build if FOUND_GCJ -JCOMPILER = $(GCJ) --bootclasspath '$(top_builddir)/lib' --classpath . -C +JCOMPILER = $(GCJ) -encoding UTF-8 --bootclasspath '$(top_builddir)/lib' --classpath . -C else if FOUND_JIKES -JCOMPILER = $(JIKES) -bootclasspath '' -extdirs '' -sourcepath '' --classpath $(top_builddir)/lib:. +JCOMPILER = $(JIKES) $(JIKESENCODING) -bootclasspath '' -extdirs '' -sourcepath '' --classpath $(top_builddir)/lib:. else if FOUND_GCJX -JCOMPILER = $(GCJX) -bootclasspath '' -sourcepath '' -classpath $(top_builddir)/lib:. +JCOMPILER = $(GCJX) -encoding UTF-8 -bootclasspath '' -sourcepath '' -classpath $(top_builddir)/lib:. else if FOUND_ECJ -JCOMPILER = $(ECJ) -bootclasspath '$(top_builddir)/lib' -classpath . +JCOMPILER = $(ECJ) -encoding UTF-8 -bootclasspath '$(top_builddir)/lib' -classpath . else error dunno how to setup the JCOMPILER and compile endif |