Displaying 2 results from an estimated 2 matches for "unfortunatelym".
Did you mean:
unfortunately
2014 Jun 30
2
[LLVMdev] LLVMgold.so in windows LLVM builds
I tried building it on windows with some CMake changes.
But unfortunatelym my clang crashes when it tries to access the LLVMgold
(not able to open it).
I have CCed Rafeal and Nakamura who might know why gold plugin in not
supported on Windows platforms.
--Sumanth G
> Hi,
>
> On 14 June 2014 00:26, <sgundapa at codeaurora.org> wrote:
>> I am trying...
2014 Jun 13
2
[LLVMdev] LLVMgold.so in windows LLVM builds
I am trying to build LLVMgold.so on windows.
I came across this piece of code which includes gold source directory in
tools/CMakeLists.txt
if( LLVM_ENABLE_PIC )
# TODO: support other systems:
if( (CMAKE_SYSTEM_NAME STREQUAL "Linux")
OR (CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") )
add_llvm_tool_subdirectory(gold)
else()
ignore_llvm_tool_subdirectory(gold)
endif()
else()