search for: gcc_minor

Displaying 6 results from an estimated 6 matches for "gcc_minor".

Did you mean: dgcc_minor
2011 Jun 18
0
[LLVMdev] Make dragonegg work with gcc-4.6
...get_pointer_alignment (tree exp, unsigned int max_align); +extern unsigned get_pointer_alignment (tree exp, unsigned int max_align); extern enum machine_mode reg_raw_mode[FIRST_PSEUDO_REGISTER]; } @@ -1306,9 +1306,11 @@ case INDIRECT_REF: LV = EmitLV_INDIRECT_REF(exp); break; +#if (GCC_MINOR < 6) case MISALIGNED_INDIRECT_REF: LV = EmitLV_MISALIGNED_INDIRECT_REF(exp); break; +#endif } // Check that the type of the lvalue is indeed that of a pointer to the tree @@ -4692,7 +4694,9 @@ case BUILT_IN_APPLY: case BUILT_IN_RETURN: case BUILT_IN_SAVEREGS: +#if (...
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:
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
...--------------------------------------------- --- Makefile.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) --------------------------------------------------------------------------------...
2011 Apr 18
0
[LLVMdev] [EXPERIMENTAL] Building Dragonegg on Cygwin
...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) \ -DGCC_MAJOR=$(GCC_MAJOR) -DGCC_MINOR=$(GCC_MINOR) \ -I$(INCLUDE_DIR) -I$(GCC_PLUGIN_DIR)/include +LD_OPTIONS+=-Wl,-e,_lazymain at 12 -L $(GCC_PLUGIN_DIR)/lib -lcc1 + LD_OPTIONS+=$(shell $(LLVM_CONFIG) --ldflags) $(LDFLAGS) # NOTE: The following flags can only be used after TARGET_UTIL has been built. 6. check $ /path...