From 4d590b73f5b5d70825155e2aeb7cd228d09a8f41 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 6 Feb 2013 07:16:15 +0200 Subject: Add some explanations on "static plugin" idea --- configure.ac | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 4bb82e4..ebc79b3 100644 --- a/configure.ac +++ b/configure.ac @@ -19,7 +19,11 @@ AC_CANONICAL_HOST AC_PROG_CXX AC_LANG(C++) -# See if we are building static plugin. +# See if we are building static plugin. Static build should only be +# used if you are building a custom version of GCC with the ODB +# plugin linked-in statically. This is primarily useful on Windows +# where GCC plugins are not (yet) supported due to dynamic loading +# limitations. # static_plugin="$enable_static" @@ -27,6 +31,8 @@ AS_IF([test x$static_plugin = xyes], AC_DEFINE([STATIC_PLUGIN], [1], [Building static plugin.])) # Check for plugin support in GCC unless we are building a static plugin. +# In the latter case the headers normally come from the GCC build directly +# via CPPFLAGS. # AS_IF([test x$static_plugin = xno], GCC_PLUGIN) -- cgit v1.1