Home | History | Annotate | Download | only in core

Lines Matching refs:CYGWIN

137     # On all modern variants of Windows (including Cygwin and Wine)
154 ifneq (,$(findstring CYGWIN,$(UNAME)))
169 # $(HOST_OS), except on Cygwin where we will have:
171 # HOST_OS == cygwin
174 # Trying to detect that we're running from Cygwin is tricky
181 # to a Cygwin installation.
187 $(call ndk_log,Found /bin/uname.exe on Windows host, checking for Cygwin)
189 # native Windows shell. On cygwin, this will create an empty NUL file
193 ifneq (,$(filter CYGWIN%,$(UNAME)))
194 $(call ndk_log,Cygwin detected: $(shell uname -a))
195 HOST_OS := cygwin
200 HOST_OS := cygwin
202 $(call ndk_log,Cygwin *not* detected!)
267 # Cygwin 1.5, which is deprecated and won't run our toolchain
271 ifeq ($(HOST_OS),cygwin)
272 # On cygwin, 'uname -r' returns something like 1.5.23(0.225/5/3)
276 $(call __ndk_info,You seem to be running Cygwin 1.5, which is not supported.)
277 $(call __ndk_info,Please upgrade to Cygwin 1.7 or higher.)
296 # On cygwin, we must use the Cygwin version of these tools instead.
297 ifneq ($(HOST_OS),cygwin)
315 # Special case, on Cygwin, always use the host echo, not our prebuilt one
317 ifneq ($(HOST_OS),cygwin)
369 # On Cygwin/MSys, define the 'cygwin-to-host-path' function here depending on the
372 # 1/ If NDK_USE_CYGPATH=1 and cygpath does exist in your path, cygwin-to-host-path
377 # 2/ Generate a Make function that performs the mapping from cygwin/msys to host
381 # cygwin-to-host-path = $(patsubst /cygdrive/c/%,c:/%,\
385 # cygwin-to-host-path = $(patsubst /c/%,c:/%,\
393 ifeq ($(HOST_OS),cygwin)
411 cygwin-to-host-path = $(strip $(shell $(CYGPATH) -m $1))
416 $(info Using cygwin substitution rules:)
419 $(eval cygwin-to-host-path = $(WINDOWS_HOST_PATH_FRAGMENT))
421 endif # HOST_OS == cygwin