HomeSort by relevance Sort by last modified time
    Searched refs:Cygwin (Results 1 - 25 of 32) sorted by null

1 2

  /external/llvm/lib/Transforms/
Makefile 16 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW Minix))
  /external/llvm/runtime/
Makefile 23 ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Cygwin MingW Minix))
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
changelog_unittest.py 48 Only add Cygwin to the path when it isn't already there. This avoids
49 causing problems for people who purposefully have non-Cygwin versions of
50 executables like svn in front of the Cygwin ones in their paths.
  /external/icu4c/
runConfigureICU 34 Cygwin Use the GNU gcc/g++ compilers on Cygwin
35 Cygwin/MSVC Use the Microsoft Visual C++ compiler on Cygwin
36 Cygwin/MSVC2005 Use the Microsoft Visual C++ 2005 compiler on Cygwin
37 Cygwin/ICL Use the Intel C++ compiler on Cygwin
233 Cygwin)
234 THE_OS="Cygwin"
    [all...]
  /external/stlport/test/eh/
cygwin.mak 79 echo "Cygwin has bugs in exception handling, runnning w/o throwing exceptions..."
83 echo "Cygwin has bugs in exception handling, runnning w/o throwing exceptions..."
87 echo "Cygwin has bugs in exception handling, runnning w/o throwing exceptions..."
  /external/llvm/tools/
Makefile 74 ifneq (,$(filter $(HOST_OS), Cygwin MingW))
  /ndk/build/core/
check-cygwin-make.mk 16 # Check that we have a Cygwin-compatible make.
28 # Get the cygwin-specific path to the make executable
29 # (e.g. /cygdrive/c/cygwin/usr/bin/make), then strip the
35 # Now try to find it on the file system, a non-cygwin compatible
36 # GNU Make, even if launched from a Cygwin shell, will not
40 $(error Android NDK: $(firstword $(MAKE)) is not cygwin-compatible)
build-all.mk 85 # On Cygwin, we generate a temporary shell script that is capable of
87 # in them from the Windows to the corresponding Cygwin convention.
90 # This shell script is generated by passing the output of the cygwin
93 ifeq ($(HOST_OS),cygwin)
94 GEN_CYGWIN_DEPS_CONVERTER := mount | tr '\\' '/' | awk -f $(BUILD_AWK)/gen-cygwin-deps-converter.awk
96 $(call __ndk_info,Cygwin dependency file conversion script:)
102 @$(HOST_ECHO) "Cygwin : Generating dependency file converter script"
138 ifeq ($(HOST_OS),cygwin)
definitions-host.mk 26 # Rationale: This function is used to translate Cygwin paths into
27 # Cygwin-specific ones. On other platforms, it will just
30 ifeq ($(HOST_OS),cygwin)
31 host-path = $(if $(strip $1),$(call cygwin-to-host-path,$1))
113 # Rationale: This function is used to translate Cygwin paths into
114 # Cygwin-specific ones. On other platforms, it will just
117 ifeq ($(HOST_OS),cygwin)
init.mk 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)
    [all...]
definitions.mk     [all...]
  /external/llvm/include/llvm/ADT/
Triple.h 87 Cygwin,
310 /// \brief Tests for either Cygwin or MinGW OS
312 return getOS() == Triple::Cygwin || getOS() == Triple::MinGW32;
  /external/llvm/tools/llvm-shlib/
Makefile 20 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
87 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
  /external/libpng/
Android.mk 29 # Case where we're building windows but not under linux (so it must be cygwin)
30 # In this case, gcc cygwin doesn't recognize -fvisibility=hidden
31 $(info libpng: Ignoring gcc flag $(common_CFLAGS) on Cygwin)
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.cpp 206 TheTriple.getOS() == Triple::Cygwin)
281 } else if (TheTriple.getOS() == Triple::MinGW32 || TheTriple.getOS() == Triple::Cygwin) {
  /external/llvm/lib/Target/X86/
X86Subtarget.h 288 bool isTargetCygwin() const { return TargetTriple.getOS() == Triple::Cygwin; }
297 // FIXME: x86_64-cygwin has not been released yet.
302 // FIXME: Cygwin is included for isTargetWin64 -- should it be included
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 77 UnsupportedOSs.push_back(Triple::Cygwin);
  /external/openssh/contrib/cygwin/
Makefile 10 cygdocdir=$(docdir)/Cygwin
21 @echo "Use \`make cygwin-postinstall DESTDIR=[package directory]'"
77 cygwin-postinstall: move-config-files remove-empty-dir install-inetd-config install-doc install-scripts install-copy-id gzip-man-pages
78 @echo "Cygwin specific configuration finished."
  /external/clang/lib/Frontend/
InitHeaderSearch.cpp 309 case llvm::Triple::Cygwin:
382 case llvm::Triple::Cygwin:
383 // Cygwin-1.7
384 AddMinGWCPlusPlusIncludePaths("/usr/lib/gcc", "i686-pc-cygwin", "4.5.3");
385 AddMinGWCPlusPlusIncludePaths("/usr/lib/gcc", "i686-pc-cygwin", "4.3.4");
386 // g++-4 / Cygwin-1.5
387 AddMinGWCPlusPlusIncludePaths("/usr/lib/gcc", "i686-pc-cygwin", "4.3.2");
  /external/llvm/lib/Support/
Triple.cpp 114 case Cygwin: return "cygwin";
264 .StartsWith("cygwin", Triple::Cygwin)
  /external/qemu/distrib/zlib-1.2.3/
configure 80 CYGWIN* | Cygwin* | cygwin* | OS/2* )
  /external/llvm/lib/MC/
MCObjectFileInfo.cpp 648 (T.getOS() == Triple::MinGW32 || T.getOS() == Triple::Cygwin ||
  /external/zlib/src/
configure 205 CYGWIN* | Cygwin* | cygwin* | OS/2*)
  /external/bison/
configure     [all...]
  /external/dropbear/libtommath/
bn.tex 124 There is limited support for making a ``DLL'' in windows via the ``makefile.cygwin\_dll'' makefile. It requires
125 Cygwin to work with since it requires the auto-export/import functionality. The resulting DLL and import library
126 ``libtommath.dll.a'' can be used to link LibTomMath dynamically to any Windows program using Cygwin.
    [all...]

Completed in 2470 milliseconds

1 2