[CMake] Problem compiling clang on cygwin, library prefix mismatch

2014-09-19 Thread Guilherme
Hello, When generating the cmake file all goes well but during compilation it fails. One of the messages is: Linking CXX shared library ../../bin/cygLLVMSupport.dll Where you can see that it has added the cyg prefix to the generated lib. But all the other targets search for libLLVMSupport.dll,

Re: [CMake] Problem compiling clang on cygwin, library prefix mismatch

2014-09-19 Thread Nils Gladitz
On 09/19/2014 10:55 AM, Guilherme wrote: Hello, When generating the cmake file all goes well but during compilation it fails. One of the messages is: Linking CXX shared library ../../bin/cygLLVMSupport.dll Where you can see that it has added the cyg prefix to the generated lib. But all the ot

Re: [CMake] Problem compiling clang on cygwin, library prefix mismatch

2014-09-19 Thread Guilherme
The output i see on the command line is: make[2]: *** No rule to make target 'lib/libLLVMSupport.dll.a', needed by 'bin/cygLLVMLineEditor.dll'. Stop. Well i'm trying to build all as shared. On Fri, Sep 19, 2014 at 11:07 AM, Nils Gladitz wrote: > On 09/19/2014 10:55 AM, Guilherme wrote: >> >> H

Re: [CMake] Problem compiling clang on cygwin, library prefix mismatch

2014-09-19 Thread Nils Gladitz
On 09/19/2014 11:17 AM, Guilherme wrote: The output i see on the command line is: make[2]: *** No rule to make target 'lib/libLLVMSupport.dll.a', needed by 'bin/cygLLVMLineEditor.dll'. Stop. Well i'm trying to build all as shared. So it is correctly looking for the import library libLLVMSupp

Re: [CMake] Problem compiling clang on cygwin, library prefix mismatch

2014-09-19 Thread Marco Atzeri
On 19/09/2014 11:17, Guilherme wrote: The output i see on the command line is: make[2]: *** No rule to make target 'lib/libLLVMSupport.dll.a', needed by 'bin/cygLLVMLineEditor.dll'. Stop. Well i'm trying to build all as shared. on cygwin, the build system usually produce something like: $ f

[CMake] Integrating ExternalData with Artifactory

2014-09-19 Thread Taylor Braun-Jones
Hi all, I'm curious if anyone has attempted to integrate Artifactory with the ExternalData framework? Unfortunately the Artifactory REST API is a two step process where you first search for a file based on MD5 or SHA1 hash[1] which returns JSON results the file's URI. You then issue a second requ

Re: [CMake] Integrating ExternalData with Artifactory

2014-09-19 Thread Brad King
On 09/19/2014 12:23 PM, Taylor Braun-Jones wrote: > integrate Artifactory with the ExternalData framework? > > the Artifactory REST API is a two step process Currently ExternalData always uses the file(DOWNLOAD) command. Recently I was thinking about how to extend the ExternalData module to suppo