]> git.eshelyaron.com Git - emacs.git/commitdiff
Make gcc the default compiler.
authorJason Rumney <jasonr@gnu.org>
Sun, 3 Feb 2008 21:59:56 +0000 (21:59 +0000)
committerJason Rumney <jasonr@gnu.org>
Sun, 3 Feb 2008 21:59:56 +0000 (21:59 +0000)
nt/ChangeLog
nt/configure.bat

index 4c5cc219fc9a590c01df3ac6be78d210c5f5c9da..505994bd1e3ed9525c31f6bca594ac7131b4a3db 100644 (file)
@@ -1,3 +1,7 @@
+2008-02-03  Jason Rumney  <jasonr@gnu.org>
+
+       * configure.bat: Make gcc the default compiler.
+
 2008-02-02  Eli Zaretskii  <eliz@gnu.org>
 
        * makefile.w32-in (unidatagen-SH, unidatagen-clean-SH): Ignore
index 24719c678639e6724250ec7caed33c86f6cc04b8..ed0fa94724af7e3dd57afec8301621ab0f8134e9 100755 (executable)
@@ -244,16 +244,17 @@ rem   Auto-detect compiler if not specified, and validate GCC if chosen.
 if (%COMPILER%)==(cl) goto compilercheckdone\r
 if (%COMPILER%)==(gcc) goto checkgcc\r
 \r
-echo Checking whether 'cl' is available...\r
-echo main(){} >junk.c\r
-cl -nologo -c junk.c\r
-if exist junk.obj goto clOK\r
-\r
 echo Checking whether 'gcc' is available...\r
+echo main(){} >junk.c\r
 gcc -c junk.c\r
-if not exist junk.o goto nocompiler\r
+if exist junk.o goto checkgcc\r
 del junk.o\r
 \r
+echo Checking whether 'cl' is available...\r
+cl -nologo -c junk.c\r
+if exist junk.obj goto clOK\r
+goto nocompiler\r
+\r
 :checkgcc\r
 Rem WARNING -- COMMAND.COM on some systems only looks at the first\r
 Rem            8 characters of a label.  So do NOT be tempted to change\r