diff options
author | Michael Koch <konqueror@gmx.de> | 2004-08-17 16:10:02 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2004-08-17 16:10:02 +0000 |
commit | baeff9708eb16a669c72cdebb32062ef1f6e6abc (patch) | |
tree | 08ca1ca1da75f90d7cedd8ba093f29a4e44fd75b /libjava/Makefile.am | |
parent | e15987c1164b77494bc07dc92d48a37a8ec61168 (diff) | |
download | gcc-baeff9708eb16a669c72cdebb32062ef1f6e6abc.zip gcc-baeff9708eb16a669c72cdebb32062ef1f6e6abc.tar.gz gcc-baeff9708eb16a669c72cdebb32062ef1f6e6abc.tar.bz2 |
Makefile.am (AM_CXXFLAGS): Reformatted to make it more ease to read.
2004-08-17 Michael Koch <konqueror@gmx.de>
* Makefile.am (AM_CXXFLAGS): Reformatted to make it more ease to read.
* Makefile.in: Regenerated.
From-SVN: r86130
Diffstat (limited to 'libjava/Makefile.am')
-rw-r--r-- | libjava/Makefile.am | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/libjava/Makefile.am b/libjava/Makefile.am index c452275..4863265 100644 --- a/libjava/Makefile.am +++ b/libjava/Makefile.am @@ -93,17 +93,25 @@ JAVAC = $(GCJ_WITH_FLAGS) -C GCC_UNWIND_INCLUDE = @GCC_UNWIND_INCLUDE@ WARNINGS = -Wextra -Wall -## We need _GNU_SOURCE defined for some Linux builds. It doesn't hurt -## to always define it. -AM_CXXFLAGS = -fno-rtti -fnon-call-exceptions $(THREADCXXFLAGS) \ -## Some systems don't allow `$' in identifiers by default, so we force it. +## Some systems don't allow `$' in identifiers by default, so we force +## it with -fdollars-in-identifiers. -Wswitch-enum detects bugs in +## the verifier implementation, and maybe other places. We need +## _GNU_SOURCE defined for some Linux builds. It doesn't hurt to +## always define it. Some systems, including Linux, need +## -D_FILE_OFFSET_BITS=64 to enable > 2GB file support. +AM_CXXFLAGS = \ + -fno-rtti \ + -fnon-call-exceptions \ + $(THREADCXXFLAGS) \ -fdollars-in-identifiers \ -## Detect bugs in the verifier implementation, and maybe other places. -Wswitch-enum \ -## Some systems, including Linux, need this to enable > 2GB file support. -D_FILE_OFFSET_BITS=64 \ - @LIBGCJ_CXXFLAGS@ @X_CFLAGS@ $(WARNINGS) -D_GNU_SOURCE \ - -DPREFIX="\"$(prefix)\"" -DLIBDIR="\"$(libdir)\"" \ + @LIBGCJ_CXXFLAGS@ \ + @X_CFLAGS@ \ + $(WARNINGS) \ + -D_GNU_SOURCE \ + -DPREFIX="\"$(prefix)\"" \ + -DLIBDIR="\"$(libdir)\"" \ -DBOOT_CLASS_PATH="\"$(jardir)/$(jar_DATA)\"" \ -DJAVA_EXT_DIRS="\"$(jardir)/ext\"" if USING_GCC |