Displaying 5 results from an estimated 5 matches for "gcc_plugin_dir".
2011 Apr 18
0
[LLVMdev] [EXPERIMENTAL] Building Dragonegg on Cygwin
...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
$ 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 $(LL...
2011 Jan 08
2
[LLVMdev] DragonEgg on FreeBSD
Hi, folks
I have made DragonEgg supports FreeBSD 8.1. May someone like
to a look? :)
Regards,
chenwj
--
Wei-Ren Chen (陳韋任)
Parallel Processing Lab, Institute of Information Science,
Academia Sinica, Taiwan (R.O.C.)
Tel:886-2-2788-3799 #1667
2011 Jan 08
0
[LLVMdev] DragonEgg on FreeBSD
Hi chenwj,
> I have made DragonEgg supports FreeBSD 8.1. May someone like
> to a look? :)
great! Does it work ok? If you had to make any changes to dragonegg, please
send patches to the mailing list. If there are some tricks needed to get it
to build, please explain what you had to do and these can be mentioned in the
dragonegg README and on the web-site.
Ciao, Duncan.
2011 Jan 09
1
[LLVMdev] DragonEgg on FreeBSD
...ile.orig 2011-01-08 12:39:35.480184745 +0800
+++ Makefile 2011-01-08 12:40:58.569064365 +0800
@@ -52,7 +52,8 @@
-MD -MP \
-DIN_GCC -DREVISION=\"$(REVISION)\" \
-DGCC_MAJOR=$(GCC_MAJOR) -DGCC_MINOR=$(GCC_MINOR) \
- -I$(SRC_DIR) -I$(GCC_PLUGIN_DIR)/include
+ -I$(SRC_DIR) -I$(GCC_PLUGIN_DIR)/include \
+ -I/usr/local/include
LD_OPTIONS+=$(LDFLAGS) $(shell $(LLVM_CONFIG) --ldflags)
--------------------------------------------------------------------------------
And you should make a freebsd directory and copy linux/ll...
2014 Sep 11
3
[LLVMdev] patch for DragonEgg 3.3
Hi - attached is a patch to enable building DragonEgg (x86_64) for LLVM3.3 and LLVM3.4. That is, add these changes to the 3.3 release, and it becomes possible to build DragonEgg against a llvm3.4 compiler.
Regards,
Richard Gorton
Cognitive Electronics
rcgorton at cog-e.com
----------
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: