1 # gcc-plugin.m4 -*- Autoconf -*-
2 # Check whether GCC is able to be built with plugin support.
4 dnl Copyright (C) 2014 Free Software Foundation, Inc.
5 dnl This file is free software, distributed under the terms of the GNU
6 dnl General Public License. As a special exception to the GNU General
7 dnl Public License, this file may be distributed as part of a program
8 dnl that contains a configuration script generated by Autoconf, under
9 dnl the same distribution terms as the rest of that program.
11 # Check for plugin support.
12 # Respects --enable-plugin.
13 # Sets the shell variables enable_plugin and pluginlibs.
14 AC_DEFUN([GCC_ENABLE_PLUGINS],
15 [# Check for plugin support
17 [AS_HELP_STRING([--enable-plugin], [enable plugin support])],
18 enable_plugin=$enableval,
19 enable_plugin=yes; default_plugin=yes)
26 # Since plugin support under MinGW is not as straightforward as on
27 # other platforms (e.g., we have to link import library, etc), we
28 # only enable it if explicitly requested.
29 if test x"$default_plugin" = x"yes"; then
31 elif test x"$enable_plugin" = x"yes"; then
32 # Use make's target variable to derive import library name.
33 pluginlibs='-Wl,--export-all-symbols -Wl,--out-implib=[$]@.a'
38 if test x$build = x$host; then
39 export_sym_check="nm${exeext} -g"
40 elif test x$host = x$target; then
41 export_sym_check="$gcc_cv_nm -g"
47 if test x$build = x$host; then
48 export_sym_check="objdump${exeext} -T"
49 elif test x$host = x$target; then
50 export_sym_check="$gcc_cv_objdump -T"
57 if test x"$enable_plugin" = x"yes" -a x"$plugin_check" = x"yes"; then
59 AC_MSG_CHECKING([for exported symbols])
60 if test "x$export_sym_check" != x; then
61 echo "int main() {return 0;} int foobar() {return 0;}" > conftest.c
62 ${CC} ${CFLAGS} ${LDFLAGS} conftest.c -o conftest$ac_exeext > /dev/null 2>&1
63 if $export_sym_check conftest$ac_exeext | grep foobar > /dev/null; then
64 : # No need to use a flag
68 AC_MSG_CHECKING([for -rdynamic])
69 ${CC} ${CFLAGS} ${LDFLAGS} -rdynamic conftest.c -o conftest$ac_exeext > /dev/null 2>&1
70 if $export_sym_check conftest$ac_exeext | grep foobar > /dev/null; then
72 pluginlibs="-rdynamic"
77 AC_MSG_RESULT([$plugin_rdynamic])
80 AC_MSG_RESULT([unable to check])
85 AC_SEARCH_LIBS([dlopen], [dl])
86 if test x"$ac_cv_search_dlopen" = x"-ldl"; then
87 pluginlibs="$pluginlibs -ldl"
91 # Check that we can build shared objects with -fPIC -shared
92 saved_LDFLAGS="$LDFLAGS"
93 saved_CFLAGS="$CFLAGS"
96 CFLAGS=`echo $CFLAGS | sed s/-mdynamic-no-pic//g`
97 CFLAGS="$CFLAGS -fPIC"
98 LDFLAGS="$LDFLAGS -shared -undefined dynamic_lookup"
101 CFLAGS="$CFLAGS -fPIC"
102 LDFLAGS="$LDFLAGS -fPIC -shared"
105 AC_MSG_CHECKING([for -fPIC -shared])
107 [extern int X;],[return X == 0;],
108 [AC_MSG_RESULT([yes]); have_pic_shared=yes],
109 [AC_MSG_RESULT([no]); have_pic_shared=no])
110 if test x"$have_pic_shared" != x"yes" -o x"$ac_cv_search_dlopen" = x"no"; then
114 LDFLAGS="$saved_LDFLAGS"
115 CFLAGS="$saved_CFLAGS"
117 # If plugin support had been requested but not available, fail.
118 if test x"$enable_plugin" = x"no" ; then
119 if test x"$default_plugin" != x"yes"; then
121 Building GCC with plugin support requires a host that supports
122 -fPIC, -shared, -ldl and -rdynamic.])
130 dnl GCC_PLUGIN_OPTION
131 dnl (SHELL-CODE_HANDLER)
133 AC_DEFUN([GCC_PLUGIN_OPTION],[dnl
134 AC_MSG_CHECKING([for -plugin option])
136 plugin_names="liblto_plugin.so liblto_plugin-0.dll cyglto_plugin-0.dll"
138 for plugin in $plugin_names; do
139 plugin_so=`${CC} ${CFLAGS} --print-prog-name $plugin`
140 if test x$plugin_so = x$plugin; then
141 plugin_so=`${CC} ${CFLAGS} --print-file-name $plugin`
143 if test x$plugin_so != x$plugin; then
144 plugin_option="--plugin $plugin_so"
148 dnl Check if ${AR} $plugin_option rc works.
149 AC_CHECK_TOOL(AR, ar)
150 if test "${AR}" = "" ; then
151 AC_MSG_ERROR([Required archive tool 'ar' not found on PATH.])
154 ${AR} $plugin_option rc conftest.a conftest.c
155 if test "$?" != 0; then
156 AC_MSG_WARN([Failed: $AR $plugin_option rc])
160 if test -n "$plugin_option"; then
162 AC_MSG_RESULT($plugin_option)