search for: gcclibraries

Displaying 20 results from an estimated 70 matches for "gcclibraries".

2004 Dec 08
0
[LLVMdev] Building llvm and cfrontend under cygwin
...L=/cygdrive/d/3rd-party/cfrontend/install LLVM_LIB_SEARCH_PATH=/cygdrive/d/3rd-party/cfrontend/build/gcc PATH=/cygdrive/d/3rd-party/llvm/tools/Debug:/usr/local/bin:/usr/bin:/bin :/usr/X11R6/bin Here we go: ------------------------------------------------------------------------ ------ if [ ! -f GCCLibraries/Makefile ]; \ then \ /cygdrive/d/3rd-party/llvm/autoconf/mkinstalldirs GCCLibraries; \ cp /cygdrive/d/3rd-party/llvm/runtime/GCCLibraries/Makefile GCCLibraries/Makefile; \ fi; \ make -C GCCLibraries all - --unix make[1]: Entering directory `/cygdrive/d/3rd-party/llvm/runtime/GCCLibraries' if...
2004 Dec 10
1
[LLVMdev] Building llvm and cfrontend under cygwin
...ar *const argv[], char *const envp[]) { ................ execveTy execvePtr = (execveTy) dlsym(RTLD_NEXT, "execve"); ..... } RTLD_NEXT is not defined in cygwin headers. 2) cfontend built ok 3) full llvm failed to build: make[3]: Entering directory `/cygdrive/d/3rd-party/llvm/runtime/GCCLibraries/crtend' llvm[3]: Compiling Exception.cpp for Debug build (bytecode) llvm[3]: Linking comp_genericeh.bc component... llvm[3]: Compiling crtend.c for Debug build (bytecode) llvm[3]: Compiling listend.ll for Debug build llvm[3]: Linking comp_main.bc component... assertion "(Result->isFirst...
2004 Jul 21
0
[LLVMdev] GC questions.
...b/sample/Debug ? llvm/projects/sample/lib/sample/Depend ? llvm/projects/sample/tools/Debug ? llvm/projects/sample/tools/sample/Debug ? llvm/projects/sample/tools/sample/Depend ? llvm/runtime/GC/SemiSpace/BytecodeObj ? llvm/runtime/GC/SemiSpace/Debug ? llvm/runtime/GC/SemiSpace/Depend ? llvm/runtime/GCCLibraries/crtend/BytecodeObj ? llvm/runtime/GCCLibraries/crtend/Depend ? llvm/runtime/GCCLibraries/libc/BytecodeObj ? llvm/runtime/GCCLibraries/libc/Depend ? llvm/runtime/GCCLibraries/libcurses/BytecodeObj ? llvm/runtime/GCCLibraries/libcurses/Depend ? llvm/runtime/GCCLibraries/libg/BytecodeObj ? llvm/runtim...
2004 Dec 05
1
[LLVMdev] Building llvm and cfrontend under cygwin
Hi there, I'm trying to build llvm under cygwin running under windows xp, and have struck the following problem: -- llvm: tools-only built ok -- cfrontend: built ok -- llvm: full build failed at the following point: make[3]: Entering directory `/cygdrive/d/3rd-party/llvm/runtime/GCCLibraries/crtend' Compiling crtend.c to bytecode Compiling listend.ll to bytecode Linking comp_main.bc component... /cygdrive/d/3rd-party/llvm/tools/Debug/gccld: Error linking in bytecode file '/cygdrive/d/3rd-party/llvm/runtime/GCCLibraries/crtend/BytecodeObj/crte nd.bc': Bytecode file '/cyg...
2004 Jul 21
2
[LLVMdev] GC questions.
On Wed, 21 Jul 2004, Tobias Nurmiranta wrote: > > Hi, I'm thinking out loud, please give me some feedback. > > Regarding llvm.gcread and llvm.gcwrite, wouldn't it be nicer if they are > implemented as: > > llvm.gcread(sbyte** object, uint offset) > llvm.gcwrite(sbyte* data, sbyte** object, uint offset) > > Where you also have the offset into the object. In
2004 Dec 24
2
[LLVMdev] README: Build Environment Changes
...re detail information :) After last 2 nighttest runs i see stable failure result: llvm[2]: Compiling dummylib.c for Debug build (bytecode) llvm-g++: installation problem, cannot exec `gccas': No such file or directory gmake[3]: *** [/usr/home/wanderer/pkg/build/llvm/night/build/llvm/runtime/GCCLibraries/crtend/Debug/Exception.bc] Error 1 gmake[3]: Leaving directory `/usr/home/wanderer/pkg/build/llvm/night/build/llvm/runtime/GCCLibraries/crtend' gmake[2]: *** [crtend/.makeall] Error 2 gmake[2]: Leaving directory `/usr/home/wanderer/pkg/build/llvm/night/build/llvm/runtime/GCCLibraries' gm...
2004 Aug 16
3
[LLVMdev] Re: [llvm-announce] LLVM 1.3 Release!]
...w I can compile llvm-gcc without problems. However, when I go back to rebuild llvm, reconfigure, setting the CFEINSTALL dir, then make it can build the tools ok but not the runtime: make[1]: Entering directory `/usr/pd/llvm/llvm/runtime' make[2]: Entering directory `/usr/pd/llvm/llvm/runtime/GCCLibraries' make[3]: Entering directory `/usr/pd/llvm/llvm/runtime/GCCLibraries/crtend' Compiling crtend.c to bytecode Files/ATI: not found make[3]: *** [/usr/pd/llvm/llvm/runtime/GCCLibraries/crtend/BytecodeObj/crtend.b c] Error 127 make[3]: Leaving directory `/usr/pd/llvm/llvm/runtime/GCCLibraries/...
2004 Jul 21
0
[LLVMdev] GC questions.
Ok, that makes sense :). , Tobias On Wed, 21 Jul 2004, Chris Lattner wrote: > On Wed, 21 Jul 2004, Tobias Nurmiranta wrote: > > > void *llvm_gc_read(void *ObjPtr, void **FieldPtr) { > > > return *FieldPtr; > > > } > > > > Hm, but doesn't FieldPtr need to be calculated target-specific in those > > cases? > > For the field pointer, one
2004 Jul 21
2
[LLVMdev] GC questions.
On Wed, 21 Jul 2004, Tobias Nurmiranta wrote: > > void *llvm_gc_read(void *ObjPtr, void **FieldPtr) { > > return *FieldPtr; > > } > > Hm, but doesn't FieldPtr need to be calculated target-specific in those > cases? For the field pointer, one could use the getelementptr instruction: %pairty = { sbyte, sbyte, int* } %pairPtr = ... %fieldptr = getelementptr
2004 Jul 22
2
[LLVMdev] GC questions.
...b/sample/Debug ? llvm/projects/sample/lib/sample/Depend ? llvm/projects/sample/tools/Debug ? llvm/projects/sample/tools/sample/Debug ? llvm/projects/sample/tools/sample/Depend ? llvm/runtime/GC/SemiSpace/BytecodeObj ? llvm/runtime/GC/SemiSpace/Debug ? llvm/runtime/GC/SemiSpace/Depend ? llvm/runtime/GCCLibraries/crtend/BytecodeObj ? llvm/runtime/GCCLibraries/crtend/Depend ? llvm/runtime/GCCLibraries/libc/BytecodeObj ? llvm/runtime/GCCLibraries/libc/Depend ? llvm/runtime/GCCLibraries/libcurses/BytecodeObj ? llvm/runtime/GCCLibraries/libcurses/Depend ? llvm/runtime/GCCLibraries/libg/BytecodeObj ? llvm/runtim...
2004 Aug 19
4
[LLVMdev] Can't get llvmg++ to work
...k. (The problem here is that FreeBSD can be made compatible with 5 different distros, and not all of them work with LLVM. I used linux_base-8; linux_base-6 did not work.) I did have some build errors, which look like they may be relevant: gmake[3]: Entering directory `/usr/home/llvm/obj/runtime/GCCLibraries/crtend' Compiling crtend.c to bytecode Compiling listend.ll to bytecode Linking comp_main.bc component... Compiling Exception.cpp to bytecode Linking comp_genericeh.bc component... Compiling SJLJ-Exception.cpp to bytecode In file included from /usr/home/llvm/cfrontend/x86/llvm-gcc/bin/../lib/gc...
2004 Aug 19
0
[LLVMdev] Can't get llvmg++ to work
...that FreeBSD can be made compatible with 5 different distros, > and not all of them work with LLVM. I used linux_base-8; linux_base-6 > did not work.) I did have some build errors, which look like they may > be relevant: > > gmake[3]: Entering directory `/usr/home/llvm/obj/runtime/GCCLibraries/crtend' > Compiling crtend.c to bytecode > Compiling listend.ll to bytecode > Linking comp_main.bc component... > Compiling Exception.cpp to bytecode > Linking comp_genericeh.bc component... > Compiling SJLJ-Exception.cpp to bytecode > In file included from /usr/home/llvm/c...
2005 Jan 26
3
[LLVMdev] Building the llvm runtime: 'Can't destroy file: The process cannot access the fi
...-------------------- llvm[3]: Building Debug Bytecode Archive libcrtend.bca /bin/rm -f /C/projects/build/MinGW/llvm-4-1/Debug/lib/libcrtend.bca /C/projects/build/MinGW/llvm-4-1/Debug/bin/llvm-ar rcsf /C/projects/build/MinGW/llvm-4-1/Debug/lib/libcrtend.bca /C/projects/build/MinGW/llvm-4-1/runtime/GCCLibraries/crtend/Debug/comp_genericeh.bc /C/projects/build/MinGW/llvm-4-1/runtime/GCCLibraries/crtend/Debug/comp_main.bc /C/projects/build/MinGW/llvm-4-1/runtime/GCCLibraries/crtend/Debug/comp_sjljeh.bc c:\projects\build\MinGW\llvm-4-1\Debug\bin\llvm-ar.exe: c:/projects/build/MinGW/llvm-4-1/Debug/lib/\lib...
2004 Aug 16
1
[LLVMdev] Re: [llvm-announce] LLVM 1.3 Release!]
...un "gmake VERBOSE=1"? >That should give us the exact compilation line used. > > > Good idea since it indicates that the problem is that the PATH contains dirs with spaces in it even though the dir I build in has no spaces: robert_feldt at it002473 /usr/pd/llvm/llvm/runtime/GCCLibraries/crtend $ pwd /usr/pd/llvm/llvm/runtime/GCCLibraries/crtend robert_feldt at it002473 /usr/pd/llvm/llvm/runtime/GCCLibraries/crtend $ gmake VERBOSE=1 Compiling crtend.c to bytecode PATH=/usr/pd/llvm/llvm/tools/Debug:/usr/pd/llvm/llvm/tools/Debug:/usr/X11R6/bin: /usr/local/bin:/usr/bin:/bin:/usr/X11R...
2004 Aug 15
0
[LLVMdev] Re: [llvm-announce] LLVM 1.3 Release!]
On Sun, 15 Aug 2004, Robert Feldt wrote: > However, I wonder if someone supplies pre-built cfrontend binaries for > cygwin? Nope, we don't have one yet, sorry. > I followed the instructions and tried to build them myself but get > when building the cfrontend. Any ideas? That is really wierd. Looking at that line of gcc.c, I have no idea how it ever worked. In any case, this
2007 Mar 26
1
[LLVMdev] llvm installation failure
...l I got the following errors: llvm[3]: Installing Debug Bytecode Archive /lib/libc.a /usr/bin/install: cannot create regular file `/lib/libc.a': Permission denied make[3]: *** [/lib/libc.a] Error 1 make[3]: Leaving directory `/home/performA/users/lefever/testbed-work/llvm-cvs-070325/runtime/GCCLibraries/libc' make[2]: *** [libc/.makeinstall] Error 2 make[2]: Leaving directory `/home/performA/users/lefever/testbed-work/llvm-cvs-070325/runtime/GCCLibraries' make[1]: *** [GCCLibraries/.makeinstall] Error 2 make[1]: Leaving directory `/home/performA/users/lefever/testbed-work/llvm-cvs-070325...
2004 Aug 16
0
[LLVMdev] Re: [llvm-announce] LLVM 1.3 Release!]
On Mon, Aug 16, 2004 at 01:07:39PM +0200, Robert Feldt wrote: > However, when I go back to rebuild llvm, reconfigure, setting the > CFEINSTALL dir, then make it can build the tools ok but not the > runtime: [snip] > Compiling crtend.c to bytecode > Files/ATI: not found [snip] > I don't understand the error message since I see no reference to > Files/ATI. Any clues? Can
2005 Feb 17
2
[LLVMdev] LLVM CFE bootstrap problem at FreeBSD after last $(Install) changes in Makefile.rules
...-m mode] [-o owner] file1 ... fileN directory install -d [-v] [-g group] [-m mode] [-o owner] directory ... gmake[2]: *** [/usr/home/wanderer/pkg/build/llvm/night/cfe/bin/../lib/libcrtend.a] Error 64 gmake[2]: Leaving directory `/usr/home/wanderer/pkg/build/llvm/obj/runtime/GCCLibraries/crtend' gmake[1]: *** [crtend/.makeinstall-bytecode] Error 2 gmake[1]: Leaving directory `/usr/home/wanderer/pkg/build/llvm/obj/runtime/GCCLibraries' gmake: *** [GCCLibraries/.makeinstall-bytecode] Error 2 gmake: Leaving directory `/usr/home/wanderer/pkg/build/llvm/obj/runtime' --X8--...
2004 Dec 22
0
[LLVMdev] README: Build Environment Changes
I successfully build CFE frontend at FreeBSD 5.3. Next nighttest run show more detail information :) Vladimir
2004 Dec 24
0
[LLVMdev] README: Build Environment Changes
...r last 2 nighttest runs i see stable failure result: > > llvm[2]: Compiling dummylib.c for Debug build (bytecode) > llvm-g++: installation problem, cannot exec `gccas': No such file or > directory > gmake[3]: *** > [/usr/home/wanderer/pkg/build/llvm/night/build/llvm/runtime/GCCLibraries/crtend/Debug/Exception.bc] > Error 1 > gmake[3]: Leaving directory > `/usr/home/wanderer/pkg/build/llvm/night/build/llvm/runtime/GCCLibraries/crtend' > gmake[2]: *** [crtend/.makeall] Error 2 > gmake[2]: Leaving directory > `/usr/home/wanderer/pkg/build/llvm/night/build/llv...