Home | History | Annotate | Download | only in core

Lines Matching defs:cygwin

150     # On all modern variants of Windows (including Cygwin and Wine)
167 ifneq (,$(findstring CYGWIN,$(UNAME)))
182 # $(HOST_OS), except on Cygwin where we will have:
184 # HOST_OS == cygwin
187 # Trying to detect that we're running from Cygwin is tricky
194 # to a Cygwin installation.
200 $(call ndk_log,Found /bin/uname.exe on Windows host, checking for Cygwin)
202 # native Windows shell. On cygwin, this will create an empty NUL file
206 ifneq (,$(filter CYGWIN%,$(UNAME)))
207 $(call ndk_log,Cygwin detected: $(shell uname -a))
208 HOST_OS := cygwin
213 HOST_OS := cygwin
215 $(call ndk_log,Cygwin *not* detected!)
288 # Cygwin 1.5, which is deprecated and won't run our toolchain
292 ifeq ($(HOST_OS),cygwin)
293 # On cygwin, 'uname -r' returns something like 1.5.23(0.225/5/3)
297 $(call __ndk_info,You seem to be running Cygwin 1.5, which is not supported.)
298 $(call __ndk_info,Please upgrade to Cygwin 1.7 or higher.)
317 # On cygwin, we must use the Cygwin version of these tools instead.
318 ifneq ($(HOST_OS),cygwin)
336 # Special case, on Cygwin, always use the host echo, not our prebuilt one
338 ifneq ($(HOST_OS),cygwin)
390 # On Cygwin/MSys, define the 'cygwin-to-host-path' function here depending on the
393 # 1/ If NDK_USE_CYGPATH=1 and cygpath does exist in your path, cygwin-to-host-path
398 # 2/ Generate a Make function that performs the mapping from cygwin/msys to host
402 # cygwin-to-host-path = $(patsubst /cygdrive/c/%,c:/%,\
406 # cygwin-to-host-path = $(patsubst /c/%,c:/%,\
414 ifeq ($(HOST_OS),cygwin)
432 cygwin-to-host-path = $(strip $(shell $(CYGPATH) -m $1))
437 $(info Using cygwin substitution rules:)
440 $(eval cygwin-to-host-path = $(WINDOWS_HOST_PATH_FRAGMENT))
442 endif # HOST_OS == cygwin