Lines Matching refs:UNAME
145 # For other systems, use the `uname` output
146 UNAME := $(shell uname -s)
147 ifneq (,$(findstring Linux,$(UNAME)))
150 ifneq (,$(findstring Darwin,$(UNAME)))
154 ifneq (,$(findstring CYGWIN,$(UNAME)))
158 $(call __ndk_info,Unable to determine HOST_OS from uname -s: $(UNAME))
179 # Instead, we assume that a program named /bin/uname.exe
186 ifneq (,$(strip $(wildcard /bin/uname.exe)))
187 $(call ndk_log,Found /bin/uname.exe on Windows host, checking for Cygwin)
191 UNAME := $(shell /bin/uname.exe -s 2>NUL)
192 $(call ndk_log,uname -s returned: $(UNAME))
193 ifneq (,$(filter CYGWIN%,$(UNAME)))
194 $(call ndk_log,Cygwin detected: $(shell uname -a))
198 ifneq (,$(filter MINGW32%,$(UNAME)))
199 $(call ndk_log,MSys detected: $(shell uname -a))
226 UNAME := $(shell uname -m)
227 ifneq (,$(findstring 86,$(UNAME)))
234 ifneq (,$(findstring Power,$(UNAME)))
238 $(call __ndk_info,Unsupported host architecture: $(UNAME))
272 # On cygwin, 'uname -r' returns something like 1.5.23(0.225/5/3)
274 CYGWIN_VERSION := $(shell uname -r)