Skip to content

Commit

Permalink
Auto merge of #23143 - 5paceToast:cygwin-6.3, r=alexcrichton
Browse files Browse the repository at this point in the history
Not checking for 32/64 bit, since `uname -s` no longer contains an indicator (and `uname -m` returns correct results)
  • Loading branch information
bors committed Mar 7, 2015
2 parents 668c647 + 9f28f72 commit 2fc8b1e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,10 @@ case $CFG_OSTYPE in
CFG_CPUTYPE=x86_64
;;

# Win 8 # uname -s on 64-bit cygwin does not contain WOW64, so simply use uname -m to detect arch (works in my install)
CYGWIN_NT-6.3)
CFG_OSTYPE=pc-windows-gnu
;;
# We do not detect other OS such as XP/2003 using 64 bit using uname.
# If we want to in the future, we will need to use Cygwin - Chuck's csih helper in /usr/lib/csih/winProductName.exe or alternative.
*)
Expand Down

0 comments on commit 2fc8b1e

Please sign in to comment.