sgundapa
2014-Jul-08 18:29 UTC
[LLVMdev] [compiler-rt] clang_rt.builtins-${arch} library on windows
Is there any specific reason why the clang_rt.builtins-${arch} library is disabled for windows builds? if (NOT WIN32) foreach(arch x86_64 i386 arm) if(CAN_TARGET_${arch}) set_source_files_properties(${${arch}_SOURCES} PROPERTIES LANGUAGE C) add_compiler_rt_runtime(clang_rt.builtins-${arch} ${arch} STATIC SOURCES ${${arch}_SOURCES} CFLAGS "-std=c99") add_dependencies(builtins clang_rt.builtins-${arch}) endif() endforeach() endif() --Sumanth G -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140708/68964ba5/attachment.html>
Alexey Samsonov
2014-Jul-08 18:53 UTC
[LLVMdev] [compiler-rt] clang_rt.builtins-${arch} library on windows
Not really. I'm not sure if it builds or if it's usable on Windows (e.g. does it have a proper Clang driver support). On Tue, Jul 8, 2014 at 11:29 AM, sgundapa <sgundapa at codeaurora.org> wrote:> Is there any specific reason why the clang_rt.builtins-${arch} library is > disabled for windows builds? > > > > *if (NOT WIN32)* > > * foreach(arch x86_64 i386 arm)* > > * if(CAN_TARGET_${arch})* > > * set_source_files_properties(${${arch}_SOURCES} PROPERTIES* > > * LANGUAGE C)* > > * add_compiler_rt_runtime(clang_rt.builtins-${arch} ${arch} STATIC* > > * SOURCES ${${arch}_SOURCES}* > > * CFLAGS "-std=c99")* > > * add_dependencies(builtins clang_rt.builtins-${arch})* > > * endif()* > > * endforeach()* > > *endif()* > > > > > > --Sumanth G >-- Alexey Samsonov, Mountain View, CA -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140708/e7636ca4/attachment.html>
sgundapa
2014-Jul-08 21:45 UTC
[LLVMdev] [compiler-rt] clang_rt.builtins-${arch} library on windows
I will try to build one for windows and update the thread. --Sumanth G From: Alexey Samsonov [mailto:samsonov at google.com] Sent: Tuesday, July 08, 2014 11:53 AM To: sgundapa Cc: LLVM Developers Mailing List Subject: Re: [compiler-rt] clang_rt.builtins-${arch} library on windows Not really. I'm not sure if it builds or if it's usable on Windows (e.g. does it have a proper Clang driver support). On Tue, Jul 8, 2014 at 11:29 AM, sgundapa <sgundapa at codeaurora.org> wrote: Is there any specific reason why the clang_rt.builtins-${arch} library is disabled for windows builds? if (NOT WIN32) foreach(arch x86_64 i386 arm) if(CAN_TARGET_${arch}) set_source_files_properties(${${arch}_SOURCES} PROPERTIES LANGUAGE C) add_compiler_rt_runtime(clang_rt.builtins-${arch} ${arch} STATIC SOURCES ${${arch}_SOURCES} CFLAGS "-std=c99") add_dependencies(builtins clang_rt.builtins-${arch}) endif() endforeach() endif() --Sumanth G -- Alexey Samsonov, Mountain View, CA -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140708/cc4461c8/attachment.html>
Reasonably Related Threads
- [LLVMdev] [compiler-rt] clang_rt.builtins-aarch64 library
- [LLVMdev] [compiler-rt] clang_rt.builtins-aarch64 library
- [LLVMdev] compiler-rt for ARM-Linux with CMake?
- [LLVMdev] [compiler-rt] CMake bug in building ARM builtins library
- [LLVMdev] [compiler-rt] CMake bug in building ARM builtins library