search for: toplev

Displaying 20 results from an estimated 22 matches for "toplev".

2007 Sep 18
1
[LLVMdev] 2.1 Pre-Release Available (testers needed)
> LLVM-GCC 4.0 fails on Cygwin, possibly due to lack of symbolic links. I am trying with llvm-gcc-4.2 from svn. Aaron
2011 Jan 19
2
[LLVMdev] Building 176.gcc
...inline #endif static unsigned int hash (str, len) ... Definitely, the error existed because clang has different support for inline. Then I tried to compile with 'clang *.c -std=c99 -o gcc.clang' because c99 supports inline. It reported this error: /tmp/cc-tJBugS.o: In function `stat': toplev.c:(.text+0x0): multiple definition of `stat' /tmp/cc-aQKHyN.o:getpwd.c:(.text+0x0): first defined here /tmp/cc-tJBugS.o: In function `fstat': toplev.c:(.text+0x30): multiple definition of `fstat' /tmp/cc-aQKHyN.o:getpwd.c:(.text+0x30): first defined here /tmp/cc-GZ5yz3.o: In function `i...
2008 Jan 14
0
[LLVMdev] Multiple definitions of _floor_log2
...../llvm-gcc4.2-2.1.source/configure --prefix=/seth/courses/745/srcs/llvm-gcc/install \ --enable-llvm=$LLVMOBJDIR --enable-languages=c,c++$EXTRALANGS --enable-checking and then make It chugs along for quite some time and then gets the following when trying to link cc1-dummy.exe: libbackend.a(toplev.o): In function `floor_log2': /seth/courses/745/srcs/llvm-gcc/obj/gcc/../../llvm-gcc4.2-2.1.source/gcc /toplev.c:578: multiple definition of `_floor_log2' llvm-main.o:/usr/lib/gcc/i686-pc-cygwin/3.4.4/include/c++/bits/stl_algob ase.h:(.text$floor_log2[_floor_log2]+0x0): first defined here l...
2006 Nov 30
0
[LLVMdev] Conditional jump or move depends on uninitialised value
....h:282) ==12768== by 0xED4790: llvm::ModulePassManager::runOnModule(llvm::Module&) (PassManagerT.h:917) ==12768== by 0xED482B: llvm::PassManager::run(llvm::Module&) (Pass.cpp:85) ==12768== by 0x8C5312: llvm_asm_file_end (llvm-backend.cpp:383) ==12768== by 0x86F448: compile_file (toplev.c:1166) ==12768== by 0x871809: do_compile (toplev.c:2327) ==12768== by 0x871870: toplev_main (toplev.c:2359) ==12768== by 0x4BA112: main (llvm-main.cpp:37) I really cannot understand how Stream can be undefined on Streams.h:41 :-( Best Regards, Rafael
2011 Jan 19
0
[LLVMdev] Building 176.gcc
...> hash (str, len) > ... > Definitely, the error existed because clang has different support for > inline. Then I tried to compile with 'clang *.c -std=c99 -o gcc.clang' > because c99 supports inline. It reported this error: > /tmp/cc-tJBugS.o: In function `stat': > toplev.c:(.text+0x0): multiple definition of `stat' > /tmp/cc-aQKHyN.o:getpwd.c:(.text+0x0): first defined here > /tmp/cc-tJBugS.o: In function `fstat': > toplev.c:(.text+0x30): multiple definition of `fstat' > /tmp/cc-aQKHyN.o:getpwd.c:(.text+0x30): first defined here > /tmp/cc...
2007 Sep 05
1
[LLVMdev] Exception Problems
...db8d in llvm::FunctionPassManager::run (this=0x41a0e3f0, F=@0x41a1dc40) at /Volumes/Gir/devel/llvm/llvm.src/lib/VMCore/ PassManager.cpp:1071 #20 0x00567fd5 in llvm_asm_file_end () at ../../llvm-gcc-4.0.src/gcc/ llvm-backend.cpp:535 #21 0x00525fc1 in do_compile () at ../../llvm-gcc-4.0.src/gcc/ toplev.c:1175 #22 0x005262f4 in toplev_main (argc=0, argv=0xbfffea28) at ../../llvm- gcc-4.0.src/gcc/toplev.c:2419 #23 0x00002136 in start () Any ideas? :-) -bw
2004 May 05
0
[LLVMdev] Testing LLVM on OS X
...LVM/cfrontend/ppc/llvm-gcc/bin/gcc -c -o c-common.o -DHOST_WORDS_BIG_ENDIAN -O3 c-common.c /Users/patrick/Desktop/LLVM/cfrontend/ppc/llvm-gcc/bin/gcc -c -o c-iterate.o -DHOST_WORDS_BIG_ENDIAN -O3 c-iterate.c /Users/patrick/Desktop/LLVM/cfrontend/ppc/llvm-gcc/bin/gcc -c -o toplev.o -DHOST_WORDS_BIG_ENDIAN -O3 toplev.c /Users/patrick/Desktop/LLVM/cfrontend/ppc/llvm-gcc/bin/gcc -c -o version.o -DHOST_WORDS_BIG_ENDIAN -O3 version.c /Users/patrick/Desktop/LLVM/cfrontend/ppc/llvm-gcc/bin/gcc -c -o tree.o -DHOST_WORDS_BIG_ENDIAN -O3 tree.c /...
2016 Jul 22
2
HEAD compilation causes gcc internal error
.../Utils/SimplifyCFG.cpp: In lambda function: /llvm-clang-trunk/src/lib/Transforms/Utils/SimplifyCFG.cpp:2547:22: internal compiler error: Segmentation fault return Operator::getOpcode(&I) == Instruction::BitCast && ^ 0x8a11bf crash_signal ../../../src/lnx64/gcc/toplev.c:332 0x59d41e lookup_base(tree_node*, tree_node*, int, base_kind*, int) ../../../src/lnx64/gcc/cp/search.c:199 0x5a968b finish_qualified_id_expr(tree_node*, tree_node*, bool, bool, bool, bool) ../../../src/lnx64/gcc/cp/semantics.c:1786 0x5aa19c finish_id_expression(tree_node*, tree_node*, tree_nod...
2004 May 04
6
[LLVMdev] Testing LLVM on OS X
On Tue, 4 May 2004, Chris Lattner wrote: > I suspect that a large reason that LLVM does worst than a native C > compiler with the CBE+GCC is that LLVM generates very low-level C code, > and I'm not convinced that GCC is doing a very good job (ie, without > syntactic loops). Yup, this is EXACTLY what is going on. I took this very simple C function: int Array[1000]; void test(int
2006 Sep 11
0
[LLVMdev] trying to build llvm-gcc in linux/amd64
On Mon, 11 Sep 2006, [UTF-8] Rafael Esp?ndola wrote: > I am trying to build llvm-gcc4 on a amd64. I had to add the attached > patch to get the build system to select the correct library. Now the Applied. > build fails while compiling a code that has __builtin_va_copy. The > attached test.i fails with: > > cc1: ../../trunk/gcc/llvm-convert.cpp:443: llvm::Value* >
2004 May 05
2
[LLVMdev] Testing LLVM on OS X
...-gcc/bin/gcc -c -o > c-common.o -DHOST_WORDS_BIG_ENDIAN -O3 c-common.c > /Users/patrick/Desktop/LLVM/cfrontend/ppc/llvm-gcc/bin/gcc -c -o > c-iterate.o -DHOST_WORDS_BIG_ENDIAN -O3 c-iterate.c > /Users/patrick/Desktop/LLVM/cfrontend/ppc/llvm-gcc/bin/gcc -c -o > toplev.o -DHOST_WORDS_BIG_ENDIAN -O3 toplev.c > /Users/patrick/Desktop/LLVM/cfrontend/ppc/llvm-gcc/bin/gcc -c -o > version.o -DHOST_WORDS_BIG_ENDIAN -O3 version.c > /Users/patrick/Desktop/LLVM/cfrontend/ppc/llvm-gcc/bin/gcc -c -o tree.o > -DHOST_WORDS_BIG_ENDIAN...
2006 Sep 11
5
[LLVMdev] trying to build llvm-gcc in linux/amd64
I am trying to build llvm-gcc4 on a amd64. I had to add the attached patch to get the build system to select the correct library. Now the build fails while compiling a code that has __builtin_va_copy. The attached test.i fails with: cc1: ../../trunk/gcc/llvm-convert.cpp:443: llvm::Value* TreeToLLVM::Emit(tree_node*, llvm::Value*): Assertion `(isAggregateType(((exp)->common.type)) == (DestLoc
2006 Sep 01
2
[LLVMdev] gfortran: patch, question
...cc8 "../../src/gcc/varasm.c", type=0x3fa, code=0, library_name=0xffb59c52 <Address 0xffb59c52 out of bounds>, const_p=true) at ../../src/gcc/fortran/f95-lang.c:733 #3 0x00055760 in gfc_be_parse_file (set_yydebug=6221000) at ../../src/gcc/fortran/mathbuiltins.def:8 #4 0x002654cc in toplev_main (argc=1081721732, argv=0x407a2ee4) at ../../src/gcc/toplev.c:1105 #5 0x00002a74 in _start (argc=16, argv=0xbfffec50, envp=0xbfffec94) at /SourceCache/Csu/Csu-58.1.1/crt.c:272 #6 0x0000291c in start () Thanks! -mike Index: gcc/fortran/Make-lang.in ===========================================...
2015 Apr 16
2
[LLVMdev] Compile SPEC2006 with clang-3.2, multi definition errors.
...g-stack.bc regclass.bc regmove.bc regrename.bc reload.bc reload1.bc reorg.bc resource.bc rtl.bc rtlanal.bc rtl-error.bc sbitmap.bc sched-deps.bc sched-ebb.bc sched-rgn.bc sched-vi s.bc sdbout.bc sibcall.bc simplify-rtx.bc ssa.bc ssa-ccp.bc ssa-dce.bc stmt.bc stor-layout.bc stringpool.bc timevar.bc toplev.bc tree.bc tree-dump.bc tree-in line.bc unroll.bc varasm.bc varray.bc vmsdbgout.bc xcoffout.bc ggc-page.bc i386.bc xmalloc.bc xexit.bc hashtab.bc safe-ctype.bc splay-tree.bc xstrdup.bc md5. bc fibheap.bc xstrerror.bc concat.bc partition.bc hex.bc lbasename.bc getpwd.bc ucbqsort.bc -lm -o gcc-llvm...
2011 Apr 08
5
[LLVMdev] dragonegg build failure
...arwin10.5.0/4.5.2/plugin/include/insn-flags.h:2011: error: 'rtx' does not name a type /sw/lib/gcc4.5/lib/gcc/x86_64-apple-darwin10.5.0/4.5.2/plugin/include/insn-flags.h:2012: error: 'rtx' does not name a type .... /sw/lib/gcc4.5/lib/gcc/x86_64-apple-darwin10.5.0/4.5.2/plugin/include/toplev.h:155: error: conflicts with new declaration with 'C' linkage /sw/src/fink.build/dragonegg-gcc45-2.9-1/dragonegg-2.9/Backend.cpp: In function 'void llvm_start_unit(void*, void*)': /sw/src/fink.build/dragonegg-gcc45-2.9-1/dragonegg-2.9/Backend.cpp:1574: error: 'debug_hooks' w...
2006 Nov 06
2
[LLVMdev] Problems building cfrontend 4 source on SUSE 10.1
...in llvm::PassManagerT<llvm::MTraits>::runOnUnit () > #10 0x086f65eb in llvm::ModulePassManager::runOnModule () > #11 0x086f6659 in llvm::PassManager::run () > #12 0x08256a93 in llvm_asm_file_end () > at ../../llvm-gcc4-1.8-source/gcc/llvm-backend.cpp:277 > #13 0x0823bc40 in toplev_main (argc=47, argv=0xbff80804) > at ../../llvm-gcc4-1.8-source/gcc/toplev.c:1171 > #14 0x08096ad2 in main (argc=-1209859528, argv=0xb7e30240) > at ../../llvm-gcc4-1.8-source/gcc/llvm-main.cpp:37 > > The command looked like this in gdb when it failed: That all looks pretty...
2011 Apr 07
0
[LLVMdev] dragonegg-2.9 build fail
...ld/dragonegg-gcc45-2.9-1/dragonegg-2.9/Backend.cpp:72: /sw/lib/gcc4.5/lib/gcc/x86_64-apple-darwin10.5.0/4.5.2/plugin/include/options.h:153: error: previous declaration of 'int flag_crossjumping' with 'C++' linkage /sw/lib/gcc4.5/lib/gcc/x86_64-apple-darwin10.5.0/4.5.2/plugin/include/toplev.h:137: error: conflicts with new declaration with 'C' linkage /sw/lib/gcc4.5/lib/gcc/x86_64-apple-darwin10.5.0/4.5.2/plugin/include/options.h:198: error: previous declaration of 'int flag_if_conversion' with 'C++' linkage /sw/lib/gcc4.5/lib/gcc/x86_64-apple-darwin10.5.0/4.5....
2006 Jul 10
1
[LLVMdev] enabling Debian x86_64 for llvm 1.7
...alue-prof.o var-tracking.o real.o recog.o reg-stack.o regclass.o regmove.o regrename.o reload.o reload1.o reorg.o resource.o rtl.o rtlanal.o rtl-error.o sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o simplify-rtx.o sreal.o stmt.o stor-layout.o stringpool.o targhooks.o timevar.o toplev.o tracer.o tree.o tree-dump.o varasm.o varray.o vec.o version.o vmsdbgout.o xcoffout.o alloc-pool.o et-forest.o cfghooks.o bt-load.o pretty-print.o ggc-page.o web.o passes.o rtl-profile.o tree-profile.o rtlhooks.o cfgexpand.o lambda-mat.o lambda-trans.o lambda-code.o tree-loop-linear.o llvm-back...
2007 Apr 27
2
[LLVMdev] Boostrap Failure -- Expected Differences?
...fers ./rtl.o differs ./rtl-profile.o differs ./sbitmap.o differs ./sched-deps.o differs ./sched-ebb.o differs ./sched-rgn.o differs ./sched-vis.o differs ./simplify-rtx.o differs ./sreal.o differs ./stmt.o differs ./stor-layout.o differs ./targhooks.o differs ./timevar.o differs ./tlink.o differs ./toplev.o differs ./tracer.o differs ./tree-browser.o differs ./tree-cfg.o differs ./tree-chrec.o differs ./tree-complex.o differs ./tree-data-ref.o differs ./tree-dfa.o differs ./tree-dump.o differs ./tree-eh.o differs ./tree-gimple.o differs ./tree-if-conv.o differs ./tree-inline.o differs ./tree-into-ss...
2006 Nov 06
0
[LLVMdev] Problems building cfrontend 4 source on SUSE 10.1
...llvm::MTraits>::runOnUnit ()<br> #10 0x086f65eb in llvm::ModulePassManager::runOnModule ()<br> #11 0x086f6659 in llvm::PassManager::run ()<br> #12 0x08256a93 in llvm_asm_file_end ()<br>     at ../../llvm-gcc4-1.8-source/gcc/llvm-backend.cpp:277<br> #13 0x0823bc40 in toplev_main (argc=47, argv=0xbff80804)<br>     at ../../llvm-gcc4-1.8-source/gcc/toplev.c:1171<br> #14 0x08096ad2 in main (argc=-1209859528, argv=0xb7e30240)<br>     at ../../llvm-gcc4-1.8-source/gcc/llvm-main.cpp:37<br> <br> The command looked like this in gdb when it failed...