Displaying 3 results from an estimated 3 matches for "profile_sourc".
Did you mean:
profile_sources
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!
>
> On Fri, Mar 15, 2013 at 10:51 PM, Qun Fa <testforqunfa...
2013 Mar 25
1
[LLVMdev] undefined reference to 'llvm_gcda_start_file', 'llvm_gcda_emit_arcs', etc
...is 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
library has sources compiled for
multiple arches. I've added basi...
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.
>