search for: default_plugin

Displaying 4 results from an estimated 4 matches for "default_plugin".

2011 Apr 18
0
[LLVMdev] [EXPERIMENTAL] Building Dragonegg on Cygwin
...t \ fi LDFLAGS="$saved_LDFLAGS" + pluginlibs="-Wl,--export-all-symbols -Wl,--output-def,cc1.def" + enable_plugin=yes + # If plugin support had been requested but not available, fail. if test x"$enable_plugin" = x"no" ; then if test x"$default_plugin" != x"yes"; then 2. build gcc with --enable-lto --enable-plugin and install it. cc1*.exe might have export tables. 3. Generate import libraries. (manually!) $ dragonegg/lazyimp.pl $(GCC_PLUGIN_DIR)/lib/libcc1.a $(builtgcc)/gcc/cc1.def It takes so long time. :/ 4. Compile dll.c...
2010 Apr 10
0
[LLVMdev] darwin dragon-egg build issues
Hi Jack, > Is anyone building dragon-egg on darwin? Anton built it once. There were some problems with dynamic libraries: gcc's plugin support requires the use of dynamic libraries, and the configure logic it uses thinks that darwin does not support dynamic libraries! So it is possible that plugin support was automatically disabled because of this. Try configuring with
2010 Apr 10
3
[LLVMdev] darwin dragon-egg build issues
Is anyone building dragon-egg on darwin? I am trying to build against the fink gcc45 package that I have prepared for darwin and a updated fink llvm 2.7 package that is built as... ../llvm-2.7/configure --prefix=/sw --prefix=/sw/lib/llvm --mandir=/sw/share/man --infodir=/sw/share/info --with-gmp=/sw --with-libiconv-prefix=/usr --with-system-zlib --with-as=/Developer/usr/bin/as
2010 Apr 11
7
[LLVMdev] darwin dragon-egg build issues
...; -o x"$ac_cv_search_dlopen" = x"no"; then - pluginlibs= - enable_plugin=no - fi - LDFLAGS="$saved_LDFLAGS" - - # If plugin support had been requested but not available, fail. - if test x"$enable_plugin" = x"no" ; then - if test x"$default_plugin" != x"yes"; then - AC_MSG_ERROR([ -Building GCC with plugin support requires a host that supports --fPIC, -shared, -ldl and -rdynamic.]) - fi - fi fi AC_SUBST(pluginlibs) Index: gcc/testsuite/lib/plugin-support.exp =======================================================...