Switch the release script to build with CMake by default (PR21561)
authorHans Wennborg <hans@hanshq.net>
Wed, 15 Jul 2015 21:06:16 +0000 (21:06 +0000)
committerHans Wennborg <hans@hanshq.net>
Wed, 15 Jul 2015 21:06:16 +0000 (21:06 +0000)
commit0caeee07e1c4261bd8dc2de40627e9b136708ccf
treea0ccdf2870e346cbb547e49aacfbe16eb7a1b1e9
parent449208d95b9418306e1250429211e056f9af2940
Switch the release script to build with CMake by default (PR21561)

It retains the possibility to use the autoconf build with a
command-line option ('-use-autoconf'), and uses that by default on Darwin since
compiler-rt requires it on that platform.

This commit also removes the "Release-64" flavour and related logic. The script
would previously do two builds unless the '-no-64bit' flag was passed, but on
my machine and from those I asked this always ended up producing two 64-bit builds,
causing much confusion.

It also removes the -build-triple option, which caused the --build= flag to
get passed to ./configure. This was presumably intended for cross-compiling,
but none of the release testers use it. If someone does want to pass it,
they can use '-configure-flags --build=foo' instead.

Differential Revision: http://reviews.llvm.org/D10715

llvm-svn: 242331
llvm/utils/release/test-release.sh