Home | History | Annotate | Download | only in core

Lines Matching refs:UNAME

100         # For other systems, use the `uname` output
101 UNAME := $(shell uname -s)
102 ifneq (,$(findstring Linux,$(UNAME)))
105 ifneq (,$(findstring Darwin,$(UNAME)))
109 ifneq (,$(findstring CYGWIN,$(UNAME)))
113 $(call __ndk_info,Unable to determine HOST_OS from uname -s: $(UNAME))
134 # Instead, we assume that a program named /bin/uname.exe
141 ifneq (,$(strip $(wildcard /bin/uname.exe)))
142 $(call ndk_log,Found /bin/uname.exe on Windows host, checking for Cygwin)
143 UNAME := $(shell /bin/uname.exe -s 2>NUL)
144 $(call ndk_log,uname -s returned: $(UNAME))
145 ifneq (,$(filter CYGWIN%,$(UNAME)))
168 UNAME := $(shell uname -m)
169 ifneq (,$(findstring 86,$(UNAME)))
173 ifneq (,$(findstring Power,$(UNAME)))
177 $(call __ndk_info,Unsupported host architecture: $(UNAME))
200 # On cygwin, 'uname -r' returns something like 1.5.23(0.225/5/3)
202 CYGWIN_VERSION := $(shell uname -r)