search for: builtgcc

Displaying 1 result from an estimated 1 matches for "builtgcc".

Did you mean: build_gcc
2011 Apr 18
0
[LLVMdev] [EXPERIMENTAL] Building Dragonegg on Cygwin
...n" = 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 $ gcc -O3 -Wall dll.c -c $ ar rcs $(GCC_PLUGIN_DIR)/lib/libcc1.a dll.o 5. Tweak Dragonegg's Makefile and build! [Dragonegg] --- a/Makefile +++ b/Makefile @@ -57,6 +57,8 @@ CPP_OPTIONS+=$(CPPFLAGS) $(shell $(LLVM_CONFIG) --cppflags) \...