search for: lclangdriv

Displaying 7 results from an estimated 7 matches for "lclangdriv".

Did you mean: lclangdriver
2012 Mar 14
0
[LLVMdev] llvm-config --cxxflags does not give the result the configuration script wants?
Jun-qi Deng <dengjunqi06323011 at gmail.com> writes: >> Is it? In my experience, it isn't. Please show the relevant command >> generated by your makefile and the associated error message(s). >> > >> RTTI is an on/off option that changes per LLVM library, so setting >> -fno-rtti for using LLVM makes no sense. VMCore and Support have -frtti >> while
2012 Mar 14
2
[LLVMdev] llvm-config --cxxflags does not give the result the configuration script wants?
..._CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -g -O2 -save-temps -L/home/tang.kk/work/llvm-install/lib -ldl -lpthread -o extract_interface python.o extract_interface.o -lclangFrontend -lclangSerialization -lclangParse -lclangSema -lclangAnalysis -lclangAST -lclangLex -lclangBasic -lclangDriver -lLLVMAnalysis -lLLVMTarget -lLLVMMC -lLLVMObject -lLLVMCore -lLLVMSupport -L/home/tang.kk/work/llvm-install/lib -ldl -lpthread libtool: link: g++ -I/home/tang.kk/work/llvm-install/include -fPIC -fvisibility-inlines-hidden -D_GNU_SOURCE -Wall -W -Wno-unused-parameter -Wwrite-strings -pedantic -W...
2012 Mar 14
2
[LLVMdev] llvm-config --cxxflags does not give the result the configuration script wants?
> > Recently I think I found a bug in llvm's CMakeLists.(I use llvm 3.1svn > and > > Clang 3.1) I follow the normal way to try to compile an application that > > utilize both clang and llvm: I ./autogen.sh it, ./configure it and make > it. > > But the make fails. At last I found out the failure is because that the > > Makefile's CXXFLAGS does not contain
2012 Jul 09
0
[LLVMdev] ExecutionEngine fails to use MCJIT, non-unique static member variables
...utput.o codeinput.o codewidget.o moc_widget.o moc_consoleoutput.o moc_codeinput.o moc_codewidget.o -L/usr/lib64/qt4 - L/home/thomas/opt/llvm-debug/lib -lm -ldl -fPIC -rdynamic qt-hack/qatomic_sun.o -lcling -lclingInterpreter -lclingUtils -lclangFrontend -lclangFrontendTool -lclangSerialization - lclangDriver -lclangCodeGen -lclangParse -lclangSema -lclangEdit -lclangAnalysis -lclangRewrite -lclangAST -lclangLex -lclangBasic -lLLVMTableGen -lLLVMMCJIT - lLLVMRuntimeDyld -lLLVMObject -lLLVMMCDisassembler -lLLVMLinker -lLLVMipo -lLLVMInterpreter -lLLVMInstrumentation -lLLVMJIT -lLLVMExecutionEngine -lLL...
2012 Oct 10
0
[LLVMdev] Solicit code review (change to CodeGen)
LGTM. I will commit. On Oct 10, 2012, at 1:20 PM, Shuxin Yang <shuxin.llvm at gmail.com> wrote: > Hi, > > The attached is the fix to radar://11663049. The optimization can be outlined by following rules: > > (select (x != c), e, c) -> select (x != c), e, x), > (select (x == c), c, e) -> select (x == c), x, e) > where the <c> is an integer
2008 Dec 18
0
[LLVMdev] Troubles with clang and llvm libraries and simple Xcode project
...hon/llvmAV/ build/Release -L/usr/local/lib -F/code/luaAV/oct08/mergathon/llvmAV/ build/Release -filelist /code/luaAV/oct08/mergathon/llvmAV/build/ llvmAV.build/Release/weirdbug_nolib.build/Objects-normal/i386/ weirdbug_nolib.LinkFileList -lclangAnalysis -lclangAST -lclangBasic - lclangCodeGen -lclangDriver -lclangLex -lclangParse -lclangRewrite - lclangSema -lLLVMAnalysis -lLLVMArchive -lLLVMAsmParser - lLLVMAsmPrinter -lLLVMBitReader -lLLVMBitWriter -lLLVMCodeGen - lLLVMCore -lLLVMDebugger -lLLVMInstrumentation -lLLVMipa -lLLVMipo - lLLVMLinker -lLLVMScalarOpts -lLLVMSelectionDAG -lLLVMSupport...
2012 Oct 10
2
[LLVMdev] Solicit code review (change to CodeGen)
Hi, The attached is the fix to radar://11663049. The optimization can be outlined by following rules: (select (x != c), e, c) -> select (x != c), e, x), (select (x == c), c, e) -> select (x == c), x, e) where the <c> is an integer constant. The reason for this change is that : on x86, conditional-move-from-constant needs two instructions; however,