problem building with cmake under cygwin (need clang)

Csaba Raduly rcsaba@gmail.com
Tue Jul 26 07:57:00 GMT 2016


On Tue, Jul 26, 2016 at 2:45 AM, LMH  wrote:
> Hello,
>
> I am trying to compute the convex hull of a high dimensional space (46D x
> 2000 rows). The qhull app available in cygwin/math is based on relatively
> old code and runs out of memory.
>
> I found another version the is supposed to be able to do higher dimensions.
>
> https://bitbucket.org/tomilov/quickhull/src
>
> This version is set up to build with cmake, so I installed cmake in cygwin
> and ran it as,
>
> cmake ./src
>
> Note, I had to copy CMakeLists.txt into the src directory to get this to
> work. If I don't do that, I get the error,

That usually won't work. Instead of copying CMakeLists.txt to the src
directory, you should specify the directory where CMakeLists.txt is
located when invoking CMake.

Steps for building in a separate build directory:

mkdir _build
cd    _build
cmake ..

Csaba
-- 
GCS a+ e++ d- C++ ULS$ L+$ !E- W++ P+++$ w++$ tv+ b++ DI D++ 5++
The Tao of math: The numbers you can count are not the real numbers.
Life is complex, with real and imaginary parts.
"Ok, it boots. Which means it must be bug-free and perfect. " -- Linus Torvalds
"People disagree with me. I just ignore them." -- Linus Torvalds

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple



More information about the Cygwin mailing list