search for: target_lib

Displaying 9 results from an estimated 9 matches for "target_lib".

Did you mean: target_libs
2006 Apr 21
2
[LLVMdev] successfully bootstraped on a i686-linux-gnu
...nu/sys-include -c -xobjecti ve-c -fgnu-runtime -fobjc-exceptions -S conftest.c >&5 WARNING: EH not supported yet! configure:5134: $? = 0 configure:5155: error: unable to detect exception model To work aroud the problem I edited gcc/objc/config-lang.in and removed the comment from the line #target_libs=target-libobjc With this change it is again possible to build without objc. The complete configure line was ../llvm-gcc4-1.7.source/configure --prefix=$CFEINSTALL --enable-languages=c,c++ --program-prefix=llvm- --enable-llvm=/home/rafael/dev/obj/ --enable-checking Best Regards, Rafael
2012 Feb 10
3
Installing from source missing -lruby18 in linking.
.../rakeconfigure.rb:$ruby_libs = Config::CONFIG["LIBS"] rake/rakeconfigure.rb:OBJ_EXT = Config::CONFIG["OBJEXT"] rake/rakewx.rb:$ruby_exe = Config::CONFIG["ruby_install_name"] rake/rakewx.rb: dest_dir = Config::CONFIG[''sitelibdir''] rake/rakewx.rb: cp TARGET_LIB, Config::CONFIG[''sitearchdir''] rake/rakewx.rb: rm_rf File.join(Config::CONFIG[''sitearchdir''],File.basename(TARGET_LIB)) rake/rakewx.rb: rm_rf File.join(Config::CONFIG[''sitelibdir''], ''wx.rb'') rake/rakewx.rb: rm_rf File.join(C...
2006 Apr 28
0
[LLVMdev] successfully bootstraped on a i686-linux-gnu
On Fri, 21 Apr 2006, [UTF-8] Rafael Esp?ndola wrote: > To work aroud the problem I edited gcc/objc/config-lang.in and removed > the comment from the line > #target_libs=target-libobjc > > With this change it is again possible to build without objc. The > complete configure line was > > ../llvm-gcc4-1.7.source/configure --prefix=$CFEINSTALL > --enable-languages=c,c++ --program-prefix=llvm- > --enable-llvm=/home/rafael/dev/obj/ --enable-checkin...
2006 May 01
1
[LLVMdev] successfully bootstraped on a i686-linux-gnu
...ing errors were gone. Is this the right hack? Thanks. Nai On Friday 28 April 2006 08:05, Chris Lattner wrote: > On Fri, 21 Apr 2006, [UTF-8] Rafael Esp?ndola wrote: > > To work aroud the problem I edited gcc/objc/config-lang.in and removed > > the comment from the line > > #target_libs=target-libobjc > > > > With this change it is again possible to build without objc. The > > complete configure line was > > > > ../llvm-gcc4-1.7.source/configure --prefix=$CFEINSTALL > > --enable-languages=c,c++ --program-prefix=llvm- > > --enable-llvm=/ho...
2006 Oct 24
0
[713] trunk/wxruby2: Patch for rake install, added rake uninstall
...sk :install => [ :default, *all_ruby_lib_files ] do | t | + dest_dir = Config::CONFIG[''sitelibdir''] + force_mkdir File.join(dest_dir, ''wx'') + force_mkdir File.join(dest_dir, ''wx'', ''classes'') + cp $target_lib, Config::CONFIG[''sitearchdir''] + all_ruby_lib_files.each do | lib_file | + dest = lib_file.sub(/^lib/, dest_dir) + cp lib_file, dest + chmod 0755, dest + end + end + + desc "Removes installed library files from site_ruby&qu...
2005 Jan 19
2
[LLVMdev] Re: LLVM to SUIF-MACH VM binary (Chris Lattner, John Cortes)
...R4400, R10000 2. SPARC V7 to V9 (very close to no. 1) 3. PowerPC 4. ARM7, ARM9, ARM11 5. Alphas, but since the Alpha has very low sales in Europe, and talking from my point of view it is not that necessary. If a backend is to be used you have to do at least the following: do_gen ... with option -target_lib <my_target> do_raga ... this does the register allocation do_fin ... this finalizes code Anyway usually i print out of the MachSUIF IR the information I need in the form of data-dependence graphs. There is no such tool in their 02.07.15 distribution so i have written a small pass to do the...
2007 Nov 28
6
Problems installing/running svn-code
...ver I''ve ran into some problems while compiling/testing the subversion sources. Mind, the 1.9.2 official release works fine. Absolutely no problems whatsoever. The first hurdle was that the rake install target doesn''t work. It fails on rakewx.rb:145. Looking into it I found that $target_lib wasn''t set to anything. Searching the sources I couldn''t find where it is supposed to be set. Still the rake gem command works fine so I installed the newly created gem. However when trying to run the minimal sample (only one I tried) it segfaults. After recompiling both wxGTK an...
2007 Dec 10
0
rake/rakewx.rb error
...=============================================== --- rake/rakewx.rb (revision 1451) +++ rake/rakewx.rb (working copy) @@ -143,7 +143,7 @@ force_mkdir File.join(dest_dir, ''wx'') force_mkdir File.join(dest_dir, ''wx'', ''classes'') cp TARGET_LIB, Config::CONFIG[''sitearchdir''] - all_ruby_lib_files.each do | lib_file | + ALL_RUBY_LIB_FILES.each do | lib_file | dest = lib_file.sub(/^lib/, dest_dir) cp lib_file, dest chmod 0755, dest Hope this looks good. L8ers, Mario Steele -------------- next part ------...
2005 Jan 20
0
[LLVMdev] Re: LLVM to SUIF-MACH VM binary (Chris Lattner, John Cortes)
...ery close to no. 1) > 3. PowerPC > 4. ARM7, ARM9, ARM11 > 5. Alphas, but since the Alpha has very low sales in Europe, and talking > from my point of view it is not that necessary. > > If a backend is to be used you have to do at least the following: > do_gen ... with option -target_lib <my_target> > do_raga ... this does the register allocation > do_fin ... this finalizes code > > Anyway usually i print out of the MachSUIF IR the information I need in > the form of data-dependence graphs. There is no such tool in their > 02.07.15 distribution so i have...