Displaying 3 results from an estimated 3 matches for "add_compiler_rt_object_library".
2015 Jun 01
4
[LLVMdev] [RFC] Ideas on improving Compiler-RT CMake
...thing I want to get rid of is the ASan CMakeLists.txt. The top-level CMake files for libraries and executables shouldn't need to care about the targets. Today we loop over OSs for darwin and call add_compiler_rt_darwin_object_library, and for other operating systems we loop over archs and call add_compiler_rt_object_library. I want to push the looping as low down into the utility functions as possible. Doing this will reduce the amount of Darwin-specific code because we replicate this exact looping behavior all over Compiler-RT's build.
The second thing I want to do is make the Darwin build able to generate binar...
2015 Jun 02
3
[LLVMdev] [RFC] Ideas on improving Compiler-RT CMake
...gt; CMakeLists.txt. The top-level CMake files for libraries and
>> executables shouldn't need to care about the targets. Today we loop
>> over OSs for darwin and call add_compiler_rt_darwin_object_library,
>> and for other operating systems we loop over archs and call
>> add_compiler_rt_object_library. I want to push the looping as low
>> down into the utility functions as possible. Doing this will reduce
>> the amount of Darwin-specific code because we replicate this exact
>> looping behavior all over Compiler-RT's build.
>>
>> The second thing I want to do is...
2015 Jun 04
2
[LLVMdev] [RFC] Ideas on improving Compiler-RT CMake
...thing I want to get rid of is the ASan CMakeLists.txt. The top-level CMake files for libraries and executables shouldn't need to care about the targets. Today we loop over OSs for darwin and call add_compiler_rt_darwin_object_library, and for other operating systems we loop over archs and call add_compiler_rt_object_library. I want to push the looping as low down into the utility functions as possible. Doing this will reduce the amount of Darwin-specific code because we replicate this exact looping behavior all over Compiler-RT's build.
>
> The second thing I want to do is make the Darwin build able to gene...