THRIFT-2565 autoconf fails to find mingw-g++ cross compiler on travis CI
authorhenrique <henrique@apache.org>
Wed, 4 Jun 2014 16:14:39 +0000 (18:14 +0200)
committerhenrique <henrique@apache.org>
Wed, 4 Jun 2014 16:14:39 +0000 (18:14 +0200)
.gitignore
contrib/mingw-cross-compile.sh

index 1afe0de..1174571 100644 (file)
@@ -193,6 +193,7 @@ node_modules
 /ltmain.sh
 /missing
 /stamp-h1
+/test/status.html
 /test/cpp/StressTest
 /test/cpp/StressTestNonBlocking
 /test/cpp/TestClient
index 54cd852..7ed5d47 100755 (executable)
@@ -4,7 +4,8 @@ set -e
 ./configure \
   --disable-libs \
   --build=i686-pc-linux-gnu \
-  --host=i586-mingw32msvc
+  --host=i586-mingw32msvc \
+  CC=i586-mingw32msvc-gcc CXX=i586-mingw32msvc-g++
 
 make