diff options
-rwxr-xr-x | intro | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -12,9 +12,8 @@ # -c1 # -c2 # -c3 -# C++ compilers 1 (g++-5), 2 (clang++-3.6), and 3 prefix -# (x86_64-w64-mingw32). If the value for 2 or 2 is empty, then this test -# is skipped. +# C++ compilers 1 (g++-5), 2 (clang++-3.6), and 3 (x86_64-w64-mingw32-g++). +# If the value for 2 or 2 is empty, then this test is skipped. # # -h # The hello2 source directory, by default hello/hello2 @@ -43,7 +42,7 @@ show=n c1=g++-5 c2=clang++-3.6 -c3=x86_64-w64-mingw32 +c3=x86_64-w64-mingw32-g++ while [ $# -gt 0 ]; do case $1 in @@ -267,8 +266,7 @@ fi if [ -n "$c3" ]; then create hello-mingw32 cxx \ - config.cxx=$c3-g++ \ - config.bin.ar=$c3-ar \ + config.cxx=$c3 \ config.bin.lib=static config.cxx.loptions=-static add stable fetch |