search for: core_wrap

Displaying 5 results from an estimated 5 matches for "core_wrap".

2010 Nov 03
2
[LLVMdev] LLVM Cmake module?
...I'm building an LLVM install myself by untarring llvm, mkdir build in > the root dir of the source, cd build/, cmake .., make. > >> cmake_minimum_required (VERSION 2.6) >> project (libjllvm) >> add_library(jllvm Analysis_wrap.c BitReader_wrap.c BitWriter_wrap.c >> Core_wrap.c EnhancedDisassembly_wrap.c ExecutionEngine_wrap.c >> LinkTimeOptimizer_wrap.c lto_wrap.c Target_wrap.c >> Transforms/IPO_wrap.c Transforms/Scalar_wrap.c) >> >> # A convenience variable: >> set(LLVM_ROOT "/usr" CACHE /usr/ "Root of LLVM install.")...
2005 Dec 25
0
ruby install.rb setup failed
...ruby install.rb config -- \ --with-fox-include=/home/admin/system/fox/fox-1.4.26/include \ --with-fox-lib=/home/admin/system/fox/fox-1.4.26/src/.libs when I run ruby install.rb setup, I get: ------------------------------------ In file included from include/FXRbCommon.h:90, from core_wrap.cpp:586: include/FXRuby.h: In function `VALUE to_ruby(long unsigned int)'': include/FXRuby.h:197: error: redefinition of `VALUE to_ruby(long unsigned int)'' include/FXRuby.h:193: error: `VALUE to_ruby(FX::FXulong)'' previously defined here *** Error code 1 Stop in /home/a...
2010 Nov 03
0
[LLVMdev] LLVM Cmake module?
...o CMake as its primary build system?). Now I'm running into the problem of cflags or includes or something not being set properly. CMakeLists.txt: > cmake_minimum_required (VERSION 2.6) > project (libjllvm) > add_library(jllvm Analysis_wrap.c BitReader_wrap.c BitWriter_wrap.c > Core_wrap.c EnhancedDisassembly_wrap.c ExecutionEngine_wrap.c > LinkTimeOptimizer_wrap.c lto_wrap.c Target_wrap.c > Transforms/IPO_wrap.c Transforms/Scalar_wrap.c) > > # A convenience variable: > set(LLVM_ROOT "/usr" CACHE /usr/ "Root of LLVM install.") > # A bit of a...
2008 Apr 13
3
fxruby gem install problem
...IC -fno-strict-aliasing -g -O2 -fPIC -O0 -Iinclude -c FXRbApp.cpp g++ -I. -I. -I/usr/lib/ruby/1.8/i486-linux -I. -DHAVE_SYS_TIME_H -DHAVE_SIGNAL_H -I/usr/local/include/fxscintilla -I/usr/local/include/fox-1.6 -I/usr/include/fox-1.6 -fPIC -fno-strict-aliasing -g -O2 -fPIC -O0 -Iinclude -c core_wrap.cpp g++ -I. -I. -I/usr/lib/ruby/1.8/i486-linux -I. -DHAVE_SYS_TIME_H -DHAVE_SIGNAL_H -I/usr/local/include/fxscintilla -I/usr/local/include/fox-1.6 -I/usr/include/fox-1.6 -fPIC -fno-strict-aliasing -g -O2 -fPIC -O0 -Iinclude -c icons_wrap.cpp g++ -I. -I. -I/usr/lib/ruby/1.8/i486-linux -I. -DH...
2012 Jul 07
2
[LLVMdev] Problem in LLVM CMake modules
...I've attached CMakeLists.txt for reference. Could anyone perhaps tell me why CMake can't finish? Cheers, --Eli Gottlieb -------------- next part -------------- cmake_minimum_required (VERSION 2.6) project (jllvm) add_library(jllvm SHARED Analysis_wrap.c BitReader_wrap.c BitWriter_wrap.c Core_wrap.c EnhancedDisassembly_wrap.c ExecutionEngine_wrap.c LinkTimeOptimizer_wrap.c lto_wrap.c Target_wrap.c Transforms/IPO_wrap.c Transforms/Scalar_wrap.c) install(TARGETS jllvm DESTINATION lib/) add_definitions( -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS ) # A convenience variable: set(LLVM_ROOT &q...