search for: gccas

Displaying 20 results from an estimated 270 matches for "gccas".

Did you mean: gcc's
2006 Apr 13
0
[LLVMdev] Re: Creating Release 1.7 Branch at 1:00pm PDT
...rote: > Here's what's left on Linux (GCC 4.1.0), after all updates that went > into the branch: > > Running /proj/llvm/build/../llvm/test/Regression/CFrontend/dg.exp ... > FAIL: /proj/llvm/build/../llvm/test/Regression/CFrontend/2004-02-12- > LargeAggregateCopy.c.tr: > gccas: /proj/llvm/build/../llvm/lib/VMCore/Function.cpp:266: unsigned > int llvm::Function::getIntrinsicID() const: Assertion `0 && "Unknown > LLVM intrinsic function!"' failed. > gccas((anonymous namespace)::PrintStackTrace()+0x1a)[0x85a0ebe] > gccas((anonymous namespac...
2006 Apr 13
2
[LLVMdev] Re: Creating Release 1.7 Branch at 1:00pm PDT
...9;s left on Linux (GCC 4.1.0), after all updates that went > > into the branch: > > > > Running /proj/llvm/build/../llvm/test/Regression/CFrontend/dg.exp ... > > FAIL: /proj/llvm/build/../llvm/test/Regression/CFrontend/2004-02-12- > > LargeAggregateCopy.c.tr: > > gccas: /proj/llvm/build/../llvm/lib/VMCore/Function.cpp:266: unsigned > > int llvm::Function::getIntrinsicID() const: Assertion `0 && "Unknown > > LLVM intrinsic function!"' failed. > > gccas((anonymous namespace)::PrintStackTrace()+0x1a)[0x85a0ebe] > > gccas...
2006 Apr 13
3
[LLVMdev] Re: Creating Release 1.7 Branch at 1:00pm PDT
Here's what's left on Linux (GCC 4.1.0), after all updates that went into the branch: Running /proj/llvm/build/../llvm/test/Regression/CFrontend/dg.exp ... FAIL: /proj/llvm/build/../llvm/test/Regression/CFrontend/2004-02-12- LargeAggregateCopy.c.tr: gccas: /proj/llvm/build/../llvm/lib/VMCore/Function.cpp:266: unsigned int llvm::Function::getIntrinsicID() const: Assertion `0 && "Unknown LLVM intrinsic function!"' failed. gccas((anonymous namespace)::PrintStackTrace()+0x1a)[0x85a0ebe] gccas((anonymous namespace)::SignalHandler(in...
2006 Apr 13
0
[LLVMdev] Re: Creating Release 1.7 Branch at 1:00pm PDT
...(GCC 4.1.0), after all updates that went >>> into the branch: >>> >>> Running /proj/llvm/build/../llvm/test/Regression/CFrontend/dg.exp ... >>> FAIL: /proj/llvm/build/../llvm/test/Regression/CFrontend/2004-02-12- >>> LargeAggregateCopy.c.tr: >>> gccas: /proj/llvm/build/../llvm/lib/VMCore/Function.cpp:266: unsigned >>> int llvm::Function::getIntrinsicID() const: Assertion `0 && "Unknown >>> LLVM intrinsic function!"' failed. >>> gccas((anonymous namespace)::PrintStackTrace()+0x1a)[0x85a0ebe] >&g...
2006 Apr 13
0
[LLVMdev] Re: Creating Release 1.7 Branch at 1:00pm PDT
Branches have been created. You are free to checkin to cvs head again. I'll send mail once I have the prerelease tar balls up. Please continue to review and revise the documentation. I can fold this into the release later. Thanks, Tanya On Thu, 13 Apr 2006, Tanya Lattner wrote: > > I will be creating the release branch at 1:00pm PDT. Please refrain from > checking in from
2006 Apr 13
3
[LLVMdev] Creating Release 1.7 Branch at 1:00pm PDT
I will be creating the release branch at 1:00pm PDT. Please refrain from checking in from 1:00-1:30pm. I will send email once I am done. Thanks, Tanya
2005 Jun 13
0
[LLVMdev] problem compiling the cfrontend on Linux/PPC
...ote: > On Mon, Jun 13, 2005 at 11:02:10AM -0500, John Criswell wrote: > >>Cyrille Mescam wrote: >> [snip] > > In fact, i am using the CFE build procedures. I am on instructions 5. > > cyrille > Okay, I took a closer look at your output. I was correct in that gccas is attempting to assemble a native PPC assembly language file. However, this appears to be happening because the assembly file is generated by the GCC Makefiles for libgcc2 (in llvm-gcc/gcc/config/rs6000/t-ppccomm, I think). The first thing I would try is Marco's suggestion: add --disable...
2005 Jun 13
2
[LLVMdev] problem compiling the cfrontend on Linux/PPC
...>Hi, > > > > > >When compiling the cfrontend for Linux/PPC architecture on a powermac > >G5, i got > >the following error : > > I hate to ask a silly question, but are you using "make bootstrap" to > build the cfrontend? Your output looks like gccas is being given a > native code assembly language file to parse, and I seem to recall that > that happens if you try doing a "make bootstrap". > > Our cfrontend doesn't follow the standard GCC build procedures (mainly > because we haven't gotten the cfrontend to...
2006 May 20
2
[LLVMdev] cannot find gccas
I have installed the llvm-gcc , and there is no error during the installtion.I also have compiled the llvm successfully.But when I use this command $ llvm-gcc hello.c -o hello something wrong has happened,and this is the error information: llvm-gcc: installation problem, cannot exec `gccas': No such file or directory. what shall I do? My linux vertion is fedora 4.0 and the gcc vertion is gcc4.0
2005 Jul 25
2
Re: [LLVMdev] Compile a linux kernel with LLVM?
When I compiled a linux kernel, gccas was used to compile assembly code. But gccas cannot recognize the line comment character "#" of gnu assembler, and abort the compile with reporting a error "syntax error, unexpected $undefined". I watch llvm/tools/gccas, but donot known how to add this function in it. Wou...
2005 Jun 13
2
[LLVMdev] problem compiling the cfrontend on Linux/PPC
> Okay, I took a closer look at your output. > > I was correct in that gccas is attempting to assemble a native PPC > assembly language file. However, this appears to be happening because > the assembly file is generated by the GCC Makefiles for libgcc2 (in > llvm-gcc/gcc/config/rs6000/t-ppccomm, I think). > > The first thing I would try is Marco's s...
2005 Jul 25
0
[LLVMdev] Compile a linux kernel with LLVM?
ymxia at nudt.edu.cn wrote: > When I compiled a linux kernel, gccas was used to compile assembly code. > > But gccas cannot recognize the line comment character "#" of gnu assembler, > > and abort the compile with reporting a error "syntax error, unexpected $undefined". > > I watch llvm/tools/gccas, but donot known how to...
2008 Dec 29
3
[LLVMdev] Error when attempting to build llvm-gcc-1.5 on Mac OS X 10.5.6
Hi Anton, Where can I get gccas ? I am running Mac OS X 10.5.6 and I get the following error: xgcc: installation problem, cannot exec `gccas': No such file or directory make[2]: *** [libgcc/./_muldi3.o] Error 1 make[2]: *** Waiting for unfinished jobs.... xgcc: installation problem, cannot exec `gccas': No such file...
2004 May 14
2
[LLVMdev] Can I disable the optimizaiton for llvmgcc?
Hi all LLVMor, I just tried to compile a simple code and analyze the number of the basic blocks. But after compile, what I got, the bytecode is seems to be optimized bytecode. So the information of basic blocks is not what I expected. I want ot use the code as example to see how some of code optimization methods work. However, after compiling file using llvm test.c -o test, bytecode file
2004 Jun 28
1
[LLVMdev] xgcc: installation problem, cannot exec `gccas': No such file or directory
...types -Wmissing-prototypes -isystem ./include -g -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -I. -I. -I../../src/gcc -I../../src/gcc/. -I../../src/gcc/../include -DL_chkstk -xassembler-with-cpp -c ../../src/gcc/config/i386/cygwin.asm -o libgcc/./_chkstk.o xgcc: installation problem, cannot exec `gccas': No such file or directory Why is xgcc looking for gccas? I've not yet build the LLVM sources. And with my knowledge up to this point, it is not necessary - Correct me if I'm wrong. I have an assembler (as): % as -version GNU assembler 2.13.90 20021111 Copyright 2002 Free Software...
2007 Aug 24
0
[LLVMdev] llvmc doesn't work for compilation nor linking
On Aug 24, 2007, at 1:52 PM, Holger Schurig wrote: > Is llvmc meant for compilation? > I'm not sure what the status of llvmc is (is anyone working on it?), but I don't believe it was ready for real use or was finished. If you would like to work on it, patches are welcomed! Thanks, Tanya > $ llvmc -c a.c -o a.o > /usr/src/llvm/dist/etc/llvm/c:55: Error: Expecting output
2005 Jun 20
2
[LLVMdev] 'make check' failed with: ... PHI node entries do not match predecessors! ...
...vm-1/llvm/test/Regression/CFrontend/2005-06-15-ExpandGotoInternalProblem.c: PHI node entries do not match predecessors! %shortcirc_val = phi bool [ true, %no_exit ], [ %tmp.7, %shortcirc_next ] ; <bool> [#uses=1] label %no_exit label <badref> Broken module found, compilation aborted! gccas((anonymous namespace)::PrintStackTrace()+0x1f)[0x82b8c3f] /lib/tls/libc.so.6(abort+0x1d2)[0x363302] gccas((anonymous namespace)::Verifier::abortIfBroken()+0x196)[0x8235fb6] gccas(llvm::PassManagerTraits<llvm::Function>::runOnFunction(llvm::Function&)+0x17)[0x82201d7] Output/2005-06-15-Exp...
2004 Dec 22
3
[LLVMdev] README: Build Environment Changes
...l aliases for "llvmgcc" and "llvmgxx" or change them to invoke llvm-gcc and llvm-gxx. These aliases are not needed any more since the tools built by CFE will be named llvm-gcc and llvm-g++ 4. update your tree to latest CVS 5. make "tools-only' to get the latest gccas. When llvmgcc gets reconfigured, it will expect, for some reason, that gccas can handle the --traditional-format option. This support has been put into gccas but you need to rebuild gccas before rebuilding the CFE. 6. reconfigure your CFE as usual, but make sure you add the option --p...
2006 Jun 16
1
[LLVMdev] Build problem, in com.h
I am trying to compile the cfrontend for gcc3, not gcc4. I did ./configure --prefix=/opt/llvmgcc --enable-languages=c,c++ After adding the --enable-languages flag I get "xgcc: installation problem, cannot exec `gccas': No such file or directory" It is true, I don't have gccas in my PATH, nor does the file gccas appear in my cfrontend directory. Is my configuration wrong, yet again, or do I need to get a copy of gccas? Thank you for your time, James Supancic On 6/16/06, Chris Lattner <sabre...
2004 Nov 02
5
[LLVMdev] LLVM tools sufficient to build the cfrontend for windows from MinGW?
Hi, I'm able to build the llvm tools on the MinGW platform: burg, fpcmp, tblgen, llvm-as, llvm-dis, opt, gccas, llc, llvm-link, lli, gccld, llvm-stub, analyze and extract. I wonder if these tools are sufficient to start build the cfrontend? Henrik. _________________________________________________________________ Undg� pop-ups med MSN Toolbar - http://toolbar.msn.dk hent den gratis!