Home | History | Annotate | Download | only in core

Lines Matching refs:cygwin

92     # On all modern variants of Windows (including Cygwin and Wine)
109 ifneq (,$(findstring CYGWIN,$(UNAME)))
124 # $(HOST_OS), except on Cygwin where we will have:
126 # HOST_OS == cygwin
129 # Trying to detect that we're running from Cygwin is tricky
136 # to a Cygwin installation.
142 $(call ndk_log,Found /bin/uname.exe on Windows host, checking for Cygwin)
145 ifneq (,$(filter CYGWIN%,$(UNAME)))
146 $(call ndk_log,Cygwin detected!)
147 HOST_OS := cygwin
149 $(call ndk_log,Cygwin *not* detected!)
201 # Cygwin 1.5, which is deprecated and won't run our toolchain
205 ifeq ($(HOST_OS),cygwin)
206 # On cygwin, 'uname -r' returns something like 1.5.23(0.225/5/3)
210 $(call __ndk_info,You seem to be running Cygwin 1.5, which is not supported.)
211 $(call __ndk_info,Please upgrade to Cygwin 1.7 or higher.)
262 # On Cygwin, define the 'cygwin-to-host-path' function here depending on the
270 # from cygwin to host paths through simple substitutions.
275 # have a very weird cygwin setup).
280 # cygwin-to-host-path = $(patsubst /cygdrive/c/%,c:/%,\
288 ifeq ($(HOST_OS),cygwin)
300 cygwin-to-host-path = $1
304 cygwin-to-host-path = $(strip $(shell $(CYGPATH) -m $1))
309 $(info Using cygwin substitution rules:)
312 $(eval cygwin-to-host-path = $(WINDOWS_HOST_PATH_FRAGMENT))
315 endif # HOST_OS == cygwin