Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
jberryman
GHC
Commits
55657e2e
Commit
55657e2e
authored
May 20, 2003
by
sof
Browse files
[project @ 2003-05-20 03:46:48 by sof]
--with-gcc=<path>: for mingw32 plat, canonicalise path using cygpath
parent
7f480764
Changes
1
Show whitespace changes
Inline
Side-by-side
configure.in
View file @
55657e2e
...
...
@@ -432,6 +432,10 @@ AC_ARG_WITH(gcc,
Use a different command instead of 'gcc' for the GNU C compiler.
],
[WhatGccIsCalled="$withval"
if test "x$HostPlatform" = "xi386-unknown-mingw32"; then
# Canonicalise to <drive>:/path/to/gcc
withval=`cygpath -w ${withval} | sed -e 's@\\\\@/@g' `
fi;
CC="$withval"],
[WhatGccIsCalled="gcc"]
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment