Displaying 6 results from an estimated 6 matches for "add_compiler_rt_static_runtime".
2014 Mar 06
1
[LLVMdev] [cfe-dev] Install Problem of Compiler-rt with Visual Studio Express 2013 for Windows Desktop
...actual location is in
C:/llvm/build/Release/lib/clang/3.5.0/lib/windows/Release/clang_rt.asan-i386.lib
which just replaces $(Configuration) as Release.
Thanks
On Wed, Mar 5, 2014 at 11:56 PM, Alexey Samsonov <samsonov at google.com>wrote:
> +Brad
> Brad, do you think we should fix add_compiler_rt_static_runtime for
> multi-configuration generators
> in the same way you fixed add_sanitizer_rt_symbols recently?
>
> On Thu, Mar 6, 2014 at 9:33 AM, Feng Lu <lufeng1204 at gmail.com> wrote:
>
>> Hi, All
>> I have tried to compile and install LLVM on windows 8 using Visual
>&...
2014 Mar 06
2
[LLVMdev] Install Problem of Compiler-rt with Visual Studio Express 2013 for Windows Desktop
Hi, All
I have tried to compile and install LLVM on windows 8 using Visual Studio
Express 2013 for Windows Desktop.
The compiling is fine. However, the installing gives the following errors:
62> CMake Error at
projects/compiler-rt/lib/asan/cmake_install.cmake:34 (FILE):
62> file INSTALL cannot find
62>
2013 Mar 25
0
[LLVMdev] undefined reference to 'llvm_gcda_start_file', 'llvm_gcda_emit_arcs', etc
Thank you Alexey. I will try this out this week. Any idea on supporting
this for Mac?
My raw idea is to add this to compiler-rt/lib/profile/CMakeLists.txt
if(APPLE)
foreach(arch ${PROFILE_SUPPORTED_ARCH})
add_compiler_rt_static_runtime(clang_rt.profile-${arch} ${arch}
SOURCES ${PROFILE_SOURCES}
CFLAGS --sysroot=${COMPILER_RT_DARWIN_SDK_SYSROOT})
endforeach()
endif()
Do you think it will then support Mac?
Longyi
On Tue, Mar 19, 2013 at 4:20 AM, Alexey Samsonov <samsonov at google.com>wrote:
> Hi!
>...
2013 Mar 25
1
[LLVMdev] undefined reference to 'llvm_gcda_start_file', 'llvm_gcda_emit_arcs', etc
...Qun Fa <testforqunfa at gmail.com> wrote:
> Thank you Alexey. I will try this out this week. Any idea on supporting
> this for Mac?
>
> My raw idea is to add this to compiler-rt/lib/profile/CMakeLists.txt
>
> if(APPLE)
> foreach(arch ${PROFILE_SUPPORTED_ARCH})
> add_compiler_rt_static_runtime(clang_rt.profile-${arch} ${arch}
> SOURCES ${PROFILE_SOURCES}
> CFLAGS --sysroot=${COMPILER_RT_DARWIN_SDK_SYSROOT})
> endforeach()
> endif()
>
>
> Do you think it will then support Mac?
>
Generally we build universal libraries on Mac OS X, so that one static
l...
2014 Jan 22
2
[LLVMdev] compiler-rt for ARM-Linux with CMake?
On 20 December 2013 10:43, Alexey Samsonov <samsonov at google.com> wrote:
> There are simply no CMake build rules for building compiler-rt
> libraries targeting ARM (see compiler-rt/lib/CMakeLists.txt).
>
Hi Alexey,
I've added the ARM files on that CMake file but I got nothing compiled on
ARM. Am I missing something?
About the sanitizers, is there anyone that is known to
2013 Mar 19
2
[LLVMdev] undefined reference to 'llvm_gcda_start_file', 'llvm_gcda_emit_arcs', etc
Hi!
On Fri, Mar 15, 2013 at 10:51 PM, Qun Fa <testforqunfa at gmail.com> wrote:
> Thank you Alexey.
>
> I have tried to use Makefile. This will generate the correct symbols that
> I need.
>
> Any idea on the schedule of adding CMake support to compiler-rt?
>
Starting from r177382 CMake on Linux should build the same profile
compiler-rt library
as Makefiles.
>