Displaying 8 results from an estimated 8 matches for "lclangbasic".
Did you mean:
clangbasic
2017 Aug 19
1
Which is the best compiler to build LLVM 5.0.0 rc2?
...IB=ON -DLLVM_TARGETS_TO_BUILD="host" -DCMAKE_CXX_FLAGS="-I/home/fletcher/LLVM/llvm-4.0.distrib/local/include/c++/v1 -stdlib=libc++" -DCMAKE_EXE_LINKER_FLAGS="-Xlinker -R/home/fletcher/LLVM/llvm-4.0.distrib/local/lib -L/home/fletcher/LLVM/llvm-4.0.distrib/local/lib -lc++abi -lclangBasic -lLLVMSupport -lpthread -ldl " ../llvm
Error:
Building CXX object projects/libcxxabi/src/CMakeFiles/cxxabi_objects.dir/cxa_aux_runtime.cpp.o
In file included from /home/fletcher/LLVM/llvm-5.0.rc2/llvm/projects/libcxxabi/src/cxa_aux_runtime.cpp:13:
/home/fletcher/LLVM/llvm-5.0.rc2/llvm/projec...
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?
...long -D__STDC_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...
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
...-
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 -lLLVMDebugInfo -
lLLVMBitWriter -lLLVMX86Disassembler -lLLVMX86AsmParser -lLLVMX86CodeGen
-lLLVMX86Desc -lLLVMSelectionDAG...
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
...lib -L/code/luaAV/oct08/mergathon/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 -lL...
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,