Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2008-10-13 03:58:17 +0400
committerChristopher Faylor <me@cgf.cx>2008-10-13 03:58:17 +0400
commita7844a1841d0ee1d84ebba6774aca2d65a4d749e (patch)
treed7320b410b9efe305a5f730e6e1685d3a8534c91 /winsup/mingw/profile/configure.in
parent391f2a8eed772409ed8c95020e079c98eeaefce2 (diff)
* Makefile.in: Use a different method to invoke gcc in a cygwin-hosted
environment. * mingwex/Makefile.in: Ditto. * profile/Makefile.in: Ditto. * configure.in: Record mingw front-end for building under Cygwin. * mingwex/configure.in: Ditto. * profile/configure.in: Ditto. * configure: Regenerate. * mingwex/configure: Ditto. * profile/configure: Ditto.
Diffstat (limited to 'winsup/mingw/profile/configure.in')
-rw-r--r--winsup/mingw/profile/configure.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/winsup/mingw/profile/configure.in b/winsup/mingw/profile/configure.in
index 54d153ff8..38e52d1f9 100644
--- a/winsup/mingw/profile/configure.in
+++ b/winsup/mingw/profile/configure.in
@@ -40,13 +40,13 @@ LIBGMON_A=libgmon.a
case "$target_os" in
*mingw32crt*)
CRT_ID=1
- MNO_CYGWIN=
+ NO_CYGWIN=
RUNTIME=crtdll
CRT0S="gcrt1.o gcrt2.o"
;;
*cygwin*)
CRT_ID=2
- MNO_CYGWIN=-mno-cygwin
+ NO_CYGWIN="$(cd ${srcdir}/../../utils; pwd)/mingw"
RUNTIME=msvcrt
CRT0S=gcrt0.o
# Do not build libm.a when building under Cygwin winsup. Otherwise, it'll
@@ -55,7 +55,7 @@ case "$target_os" in
*)
# Build it for MSVCRT by default.
CRT_ID=2
- MNO_CYGWIN=
+ NO_CYGWIN=
RUNTIME=msvcrt
CRT0S="gcrt1.o gcrt2.o"
;;
@@ -65,7 +65,7 @@ W32API_INCLUDE='-I $(srcdir)/../../w32api/include'
AC_SUBST(CRT_ID)
AC_SUBST(RUNTIME)
-AC_SUBST(MNO_CYGWIN)
+AC_SUBST(NO_CYGWIN)
AC_SUBST(LIBGMON_A)
AC_SUBST(CRT0S)
AC_SUBST(W32API_INCLUDE)