search for: capitran

Displaying 3 results from an estimated 3 matches for "capitran".

Did you mean: capitan
2010 May 04
0
[LLVMdev] llvm-ld (and pthreads) problem
...roblems with producing native executables with llvm-ld. Both TimberLLVMLIB and TimberLLVMRTS is compiled into bitcode files and archived with llvm-ar. Everything works fine when using the flag -disable-opt llvm-ld -Xlinker='-pthread' -Xlinker='-m32' -native -disable-opt -L/home/capitrane/local/timber-llvm//share/timberc-1.0.3/rtsPOSIX ConcMap.bc ParPrimes.bc main.bc -o ParPrimes -lTimberLLVMRTS -lTimberLLVMLIB -v The generated file executes correctly. But when the flag -disable-opt is removed to introduce link-time optimizations the generated program segfaults. llvm-ld -Xlinke...
2007 Mar 09
1
capistrano and rails edge
hi, I''m trying to capitranize my app (cap --apply-to app iEngine) but all I got is a strange error: /i386/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'': no such file to load -- app/config/environment (LoadError) what capistrano is talking about? thanks. --~--~---------~--~----~-...
2010 Mar 19
1
[LLVMdev] Removing unused function definitions
Hi, I wonder if there is a pass in opt that removes unused function definitions. I'm working on a llvm based compiler backend and when I link the generated bc files with the runtime system and the standard library, all functions from the standard library are in the linked bc file, even unused ones. I've tried some different passes in "opt" but the definitions are still there.