Differences From Artifact [5afa048543]:
- File utils/objfw-config.in — part of check-in [5d0b1e33bc] at 2010-10-17 19:30:16 on branch trunk — Make it possible to compile libraries using objfw-compile. (user: js, size: 2880) [annotate] [blame] [check-ins using]
To Artifact [602bb6b3fd]:
- File
utils/objfw-config.in
— part of check-in
[a53998a0bf]
at
2010-10-19 19:46:21
on branch trunk
— Don't specify -fobjc-exceptions.
All compilers supported by ObjFW do this automatically, plus newer
revisions of Clang complain about -fobjc-exceptions being ignored by
the compiler. (user: js, size: 2839) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 | #!/bin/sh prefix="@prefix@" exec_prefix="@exec_prefix@" libdir="@libdir@" CFLAGS="" CPPFLAGS="-I@includedir@" CXXFLAGS="" OBJC="@OBJC@" | | < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/sh prefix="@prefix@" exec_prefix="@exec_prefix@" libdir="@libdir@" CFLAGS="" CPPFLAGS="-I@includedir@" CXXFLAGS="" OBJC="@OBJC@" OBJCFLAGS="@GNU_RUNTIME@ -fexceptions -fconstant-string-class=OFConstantString" OBJCFLAGS="$OBJCFLAGS @NO_CONST_CFSTRINGS@ @BLOCKS_FLAGS@ @NO_WARN_UNUSED@" LIB_CFLAGS="@LIB_CFLAGS@" LIB_LDFLAGS="@LIB_LDFLAGS@" LIB_PREFIX="@LIB_PREFIX@" LIB_SUFFIX="@LIB_SUFFIX@" LDFLAGS="" LDFLAGS_REEXPORT="@LDFLAGS_REEXPORT@" |
︙ | ︙ |