This is the mail archive of the crossgcc@sourceware.org mailing list for the crossgcc project.

See the CrossGCC FAQ for lots more information.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

file extension for mingw executables.


Hi Dan,

The file extension of ".exe" needs to be added for mingw executables in crosstool.sh. I've attached a patch to do this,

Best regards,

Steve



--- crosstool-0.42/crosstool.sh.orig	2006-03-16 10:24:47.000000000 +0000
+++ crosstool-0.42/crosstool.sh	2006-03-16 10:25:04.000000000 +0000
@@ -210,6 +210,7 @@
 # filenames end in .exe
 case "$GCC_HOST" in
 *cygwin*) EXEEXT=".exe" ;;
+*mingw*) EXEEXT=".exe" ;;
 *)        EXEEXT="" ;;
 esac
 

--
For unsubscribe information see http://sourceware.org/lists.html#faq

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]