Displaying 2 results from an estimated 2 matches for "_some_prefix_dir_".
2014 Aug 27
2
[LLVMdev] migrating from autoconf to cmake+ninja
I want to start using cmake+ninja instead of autoconf for configuring
and building llvm from svn, but I have no idea how to map my existing
list of autoconf flags to cmake.
Here's how I run ./configure right now in the top directory:
PREFIX=_some_prefix_dir_ \
../llvm/configure \
--prefix=$PREFIX \
--libdir=$PREFIX/lib/llvm \
--sysconfdir=$PREFIX/etc \
--enable-shared \
--enable-targets=all \
--disable-expensive-checks \
--disable-debug-runtime \
--disable-assertions \
--with-binutils-include=/usr/include \
-...
2014 Sep 02
2
[LLVMdev] migrating from autoconf to cmake+ninja
...from autoconf to cmake+ninja
>
> I want to start using cmake+ninja instead of autoconf for configuring and building llvm from svn, but I have no idea how to map my existing list of autoconf flags to cmake.
>
> Here's how I run ./configure right now in the top directory:
> PREFIX=_some_prefix_dir_ \
> ../llvm/configure \
> --prefix=$PREFIX \
> --libdir=$PREFIX/lib/llvm \
> --sysconfdir=$PREFIX/etc \
> --enable-shared \
> --enable-targets=all \
> --disable-expensive-checks \
> --disable-debug-runtime \
> --disable-assertions \
>...