2 AC_INIT([LTO plugin for ld], 0.1,,[lto-plugin])
5 AM_INIT_AUTOMAKE([foreign no-dist])
8 [AS_HELP_STRING([--with-libiberty=PATH],
9 [specify the directory where to find libiberty [../libiberty]])],
10 [], with_libiberty=../libiberty)
11 AC_SUBST(with_libiberty)
14 ACX_PROG_CC_WARNING_OPTS([-Wall], [ac_lto_plugin_warn_cflags])
16 # Check whether -static-libgcc is supported.
17 saved_LDFLAGS="$LDFLAGS"
18 LDFLAGS="$LDFLAGS -static-libgcc"
19 AC_MSG_CHECKING([for -static-libgcc])
21 int main() {}], [have_static_libgcc=yes], [have_static_libgcc=no])
22 AC_MSG_RESULT($have_static_libgcc);
23 LDFLAGS="$saved_LDFLAGS"
24 # Need -Wc to get it through libtool.
25 if test "x$have_static_libgcc" = xyes; then
26 ac_lto_plugin_ldflags="-Wc,-static-libgcc"
28 AC_SUBST(ac_lto_plugin_ldflags)
32 AC_SUBST(target_noncanonical)
36 AC_CONFIG_FILES(Makefile)
37 AC_CONFIG_HEADERS(config.h)