Home
last modified time | relevance | path

Searched +full:macosx +full:- +full:version +full:- +full:min (Results 1 – 25 of 56) sorted by relevance

123

/third_party/curl/.github/workflows/
Dmacos.yml8 - master
9 - '*/ci'
12 - master
17 runs-on: 'macos-latest'
18 timeout-minutes: 90
20 fail-fast: false
23 - name: normal
25 configure: --without-ssl
26 macosx-version-min: 10.9
27 - name: debug
[all …]
/third_party/boost/tools/build/src/tools/
Ddarwin.jam4 # Copyright 2005-2007 Mat Marcus
5 # Copyright 2005-2007 Adobe Systems Incorporated
6 # Copyright 2007-2010 Rene Rivera
7 # Distributed under the Boost Software License, Version 1.0.
19 import version ;
20 import property-set ;
27 ## The MacOSX version to compile for, which maps to the SDK to use (sysroot).
28 feature macosx-version : : propagated link-incompatible symmetric optional ;
30 ## The minimal MacOSX version to target.
31 feature macosx-version-min : : propagated optional ;
[all …]
/third_party/libffi/
Dgenerate-darwin-source-and-headers.py16 triple = 'i386-apple-darwin11'
17 version_min = '-miphoneos-version-min=7.0'
29 triple = 'x86_64-apple-darwin13'
30 version_min = '-miphoneos-version-min=7.0'
42 triple = 'arm-apple-darwin11'
43 version_min = '-miphoneos-version-min=7.0'
55 triple = 'aarch64-apple-darwin13'
56 version_min = '-miphoneos-version-min=7.0'
66 sdk = 'macosx'
68 triple = 'i386-apple-darwin10'
[all …]
/third_party/curl/
DMacOSX-Framework9 # Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
31 # 10.5 is the *ONLY* SDK that support PPC64 :( -- 10.6 do not have ppc64 support
43 VERSION=`/usr/bin/sed -ne 's/^#define LIBCURL_VERSION "\(.*\)"/\1/p' include/curl/curlver.h`
44 FRAMEWORK_VERSION=Versions/Release-$VERSION
47 # version to Versions/Release-7.20.1 etc.
48 # now a simple rsync -vaP libcurl.framework /Library/Frameworks will install it
49 # and setup the right paths to this version, leaving the system version
52 DEVELOPER_PATH=`xcode-select --print-path`
54 # MacOSX.platform folder
55 if test -d "$DEVELOPER_PATH/Platforms/MacOSX.platform/Developer/SDKs"; then
[all …]
/third_party/skia/third_party/externals/libwebp/
Dxcframeworkbuild.sh13 set -e
20 # Extract Xcode version.
21 readonly XCODE=$(xcodebuild -version | grep Xcode | cut -d " " -f2)
22 if [[ -z "${XCODE}" ]] || [[ "${XCODE%%.*}" -lt 11 ]]; then
27 # Extract the latest SDK version from the final field of the form: iphoneosX.Y
30 xcodebuild -showsdks \
31 | grep iphoneos | sort | tail -n 1 | awk '{print substr($NF, 9)}'
32 xcodebuild -showsdks \
33 | grep macosx | sort | tail -n 1 | awk '{print substr($NF, 7)}'
43 # Names should be of the form '<platform>-[<variant>-]<architecture>'.
[all …]
/third_party/flutter/skia/third_party/externals/sdl/build-scripts/
Dgcc-fat.sh5 # Usage: ./configure CC="sh gcc-fat.sh" && make && rm -rf x86 x64
7 DEVELOPER="`xcode-select -print-path`/Platforms/MacOSX.platform/Developer"
9 # Intel 32-bit compiler flags (10.6 runtime compatibility)
10 GCC_COMPILE_X86="gcc -arch i386 -mmacosx-version-min=10.6 \
11 -I/usr/local/include"
13 GCC_LINK_X86="-mmacosx-version-min=10.6"
15 # Intel 64-bit compiler flags (10.6 runtime compatibility)
16 GCC_COMPILE_X64="gcc -arch x86_64 -mmacosx-version-min=10.6 \
17 -DMAC_OS_X_VERSION_MIN_REQUIRED=1060 \
18 -I/usr/local/include"
[all …]
Dg++-fat.sh5 # Usage: ./configure CXX="sh g++-fat.sh" && make && rm -rf x86 x64
7 DEVELOPER="`xcode-select -print-path`/Platforms/MacOSX.platform/Developer"
9 # Intel 32-bit compiler flags (10.6 runtime compatibility)
10 GCC_COMPILE_X86="g++ -arch i386 -mmacosx-version-min=10.6 \
11 -I/usr/local/include"
13 GCC_LINK_X86="-mmacosx-version-min=10.6"
15 # Intel 64-bit compiler flags (10.6 runtime compatibility)
16 GCC_COMPILE_X64="g++ -arch x86_64 -mmacosx-version-min=10.6 \
17 -I/usr/local/include"
19 GCC_LINK_X64="-mmacosx-version-min=10.6"
[all …]
/third_party/cef/cmake/
Dcef_variables.cmake.in2 # reserved. Use of this source code is governed by a BSD-style license that
81 # Platform-specific compiler/linker flags.
84-fno-strict-aliasing # Avoid assumptions regarding non-aliasing of objects of different…
85 -fPIC # Generate position-independent code for shared libraries
86-fstack-protector # Protect some vulnerable functions from stack-smashing (security …
87 -funwind-tables # Support stack unwinding for backtrace()
88-fvisibility=hidden # Give hidden visibility to declarations that are not explicitly m…
89--param=ssp-buffer-size=4 # Set the minimum buffer size protected by SSP (security feature, …
90-pipe # Use pipes rather than temporary files for communication between …
91 -pthread # Use the pthread library
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DTriple.h1 //===-- llvm/ADT/Triple.h - Target triple helper class ----------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
22 /// Triple - Helper class for working with autoconf configuration names. For
27 /// ARCHITECTURE-VENDOR-OPERATING_SYSTEM
29 /// ARCHITECTURE-VENDOR-OPERATING_SYSTEM-ENVIRONMENT
38 /// Clients that need to handle the non-canonical triples that users often
55 bpfel, // eBPF or extended BPF or 64-bit BPF (little endian)
56 bpfeb, // eBPF or extended BPF or 64-bit BPF (big endian)
66 r600, // R600: AMD GPUs HD2XXX - HD6XXX
[all …]
/third_party/skia/gn/skia/
DBUILD.gn3 # Use of this source code is governed by a BSD-style license that can be
48 exec_script("../find_xcode_sysroot.py", [ "macosx" ], "trim string")
66 cflags += [ "-Wno-attributes" ]
71 "-v",
72 "--sysroot=" + rebase_path("$fuchsia_sdk_path/arch/$target_cpu/sysroot"),
74 cflags += [ "--sysroot=" +
77 target_triple = "--target=x86_64-${target_os}"
79 target_triple = "--target=aarch64-unknown-${target_os}"
91 cflags += [ "--target=arm64-windows" ]
95 "/utf-8", # Set Source and Executable character sets to UTF-8.
[all …]
/third_party/python/Lib/idlelib/
Ddebugger.py7 from idlelib import macosx
88 # there - insert a traceback.print_stack() to check it out.
93 # - return immediately from the nested run()
94 # - abort_loop ensures the nested event loop will terminate
95 # - the debugger's interaction routine completes normally
96 # - the restart_subprocess() will have taken care of stopping
245 self.nesting_level -= 1
258 if filename[:1] + filename[-1:] != "<>" and os.path.exists(filename):
378 if macosx.isAquaTk():
379 # At least on with the stock AquaTk version on OSX 10.4 you'll
[all …]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
Dxcode_emulation.py2 # Use of this source code is governed by a BSD-style license that can be
27 # version number).
31 # corresponding to the installed version of Xcode.
46 depends on the SDKROOT used ("macosx", "iphoneos", "iphonesimulator") and
47 on the version of Xcode.
51 variable_pattern = re.compile(r'\$\([a-zA-Z_][a-zA-Z0-9_]*\)$')
101 installed version of Xcode. The default values used by Xcode for ARCHS
102 and the expansion of the variables depends on the version of Xcode used.
104 For all version anterior to Xcode 5.0 or posterior to Xcode 5.1 included
109 For "macosx" SDKROOT, all version starting with Xcode 5.0 includes 64-bit
[all …]
/third_party/node/tools/gyp/pylib/gyp/
Dxcode_emulation.py2 # Use of this source code is governed by a BSD-style license that can be
26 # version number).
30 # corresponding to the installed version of Xcode.
46 depends on the SDKROOT used ("macosx", "iphoneos", "iphonesimulator") and
47 on the version of Xcode.
51 variable_pattern = re.compile(r"\$\([a-zA-Z_][a-zA-Z0-9_]*\)$")
101 installed version of Xcode. The default values used by Xcode for ARCHS
102 and the expansion of the variables depends on the version of Xcode used.
104 For all version anterior to Xcode 5.0 or posterior to Xcode 5.1 included
109 For "macosx" SDKROOT, all version starting with Xcode 5.0 includes 64-bit
[all …]
/third_party/curl/docs/
DINSTALL.md16 ./bootstrap-vcpkg.sh
20 … up to date by Microsoft team members and community contributors. If the version is out of date, p…
25 the `GIT-INFO` file in the root directory for specific instructions on how to
33 ./configure --with-openssl [--with-gnutls --with-wolfssl]
44 ./configure --help
49 ./configure --prefix=/path/to/curl/tree
55 ./configure --prefix=$HOME
64 ./configure --with-openssl
67 you have pkg-config installed, set the pkg-config path first, like this:
69 env PKG_CONFIG_PATH=/opt/OpenSSL/lib/pkgconfig ./configure --with-openssl
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
Drenderergl_utils.cpp3 // Use of this source code is governed by a BSD-style license that can be
39 std::string nativeVendorString(reinterpret_cast<const char *>(functions->getString(GL_VENDOR))); in GetVendorID()
66 reinterpret_cast<const char *>(functions->getString(GL_RENDERER))); in GetDeviceID()
96 if (!functions->hasExtension(extension)) in MeetsRequirements()
113 if (functions->version >= requirements.version) in MeetsRequirements()
121 if (!functions->hasExtension(extension)) in MeetsRequirements()
143 functions->getIntegerv(GL_TEXTURE_BINDING_2D, &oldTextureBinding); in CheckSizedInternalFormatTextureRenderability()
147 functions->genTextures(1, &texture); in CheckSizedInternalFormatTextureRenderability()
148 functions->bindTexture(GL_TEXTURE_2D, texture); in CheckSizedInternalFormatTextureRenderability()
151 functions->texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); in CheckSizedInternalFormatTextureRenderability()
[all …]
/third_party/gstreamer/gstplugins_good/sys/osxvideo/
Dosxvideosink.m3 * Copyright (C) 2004-6 Zaheer Abbas Merali <zaheerabbas at merali dot org>
9 * version 2 of the License, or (at your option) any later version.
19 * Boston, MA 02110-1301, USA.
27 * SECTION:element-osxvideosink
29 * The OSXVideoSink renders video frames to a MacOSX window. The video output
56 GST_STATIC_CAPS ("video/x-raw, "
103 if (sink_class->ns_app_thread == NULL){
106 thread = sink_class->ns_app_thread;
150 GstOSXVideoSinkObject * object = (GstOSXVideoSinkObject *) sink->osxvideosinkobject;
171 sink_class->run_loop_state = GST_OSX_VIDEO_SINK_RUN_LOOP_STATE_RUNNING;
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
DDarwinAsmParser.cpp1 //===- DarwinAsmParser.cpp - Darwin (Mach-O) Assembly Parser --------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
63 this->MCAsmParserExtension::Initialize(Parser); in Initialize()
510 if (Sym->isDefined()) in parseDirectiveAltEntry()
554 MachO::SectionType SectionType = Current->getType(); in parseDirectiveIndirectSymbol()
569 if (Sym->isTemporary()) in parseDirectiveIndirectSymbol()
570 return TokError("non-local symbol required in directive"); in parseDirectiveIndirectSymbol()
700 Triple TT = getParser().getContext().getObjectFileInfo()->getTargetTriple(); in parseDirectiveSection()
792 *OS << getSourceManager().getBufferInfo(CurBuf).Buffer->getBufferIdentifier() in parseDirectiveSecureLogUnique()
[all …]
/third_party/libxml2/doc/html/
Dlibxml-xmlautomata.html1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xht…
3 …s="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset…
4 TD {font-family: Verdana,Arial,Helvetica}
5 BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em}
6 H1 {font-family: Verdana,Arial,Helvetica}
7 H2 {font-family: Verdana,Arial,Helvetica}
8 H3 {font-family: Verdana,Arial,Helvetica}
9 A:link, A:visited, A:active { text-decoration: underline }
11 div.deprecated pre.programlisting {border-style: double;border-color:red}
[all …]
Dlibxml-xmlregexp.html1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xht…
3 …s="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset…
4 TD {font-family: Verdana,Arial,Helvetica}
5 BODY {font-family: Verdana,Arial,Helvetica; margin-top: 2em; margin-left: 0em; margin-right: 0em}
6 H1 {font-family: Verdana,Arial,Helvetica}
7 H2 {font-family: Verdana,Arial,Helvetica}
8 H3 {font-family: Verdana,Arial,Helvetica}
9 A:link, A:visited, A:active { text-decoration: underline }
11 div.deprecated pre.programlisting {border-style: double;border-color:red}
[all …]
/third_party/python/Mac/BuildScript/
Dbuild-installer.py6 - support universal2 variant with arm64 and x86_64 archs
7 - enable clang optimizations when building on 10.15+
10 - 2.7 end-of-life issues:
11 - Python 3 installs now update the Current version link
13 - fully support running under Python 3 as well as 2.7
14 - support building on newer macOS systems with SIP
15 - fully support building on macOS 10.9+
16 - support 10.6+ on best effort
17 - support bypassing docs build by supplying a prebuilt
18 docs html tarball in the third-party source library,
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
Drenderergl_utils.cpp3 // Use of this source code is governed by a BSD-style license that can be
46 return reinterpret_cast<const char *>(functions->getString(name)); in GetString()
49 bool IsMesa(const FunctionsGL *functions, std::array<int, 3> *version) in IsMesa() argument
51 ASSERT(version); in IsMesa()
53 if (functions->standard != STANDARD_GL_DESKTOP) in IsMesa()
65 int *data = version->data(); in IsMesa()
74 static int number = -1; in getAdrenoNumber()
75 if (number == -1) in getAdrenoNumber()
89 static int number = -1; in getMaliTNumber()
90 if (number == -1) in getMaliTNumber()
[all …]
/third_party/python/Lib/urllib/
Drequest.py5 below). It opens the URL and returns the results as file-like
13 non-error returns. The HTTPRedirectHandler automatically deals with
17 urlopen(url, data=None) -- Basic usage is the same as original
19 get a file-like object back. One difference is that you can also pass
24 build_opener -- Function that creates a new OpenerDirector instance.
30 install_opener -- Installs a new opener as the default opener.
34 OpenerDirector -- Sets up the User Agent as the Python-urllib client and manages
37 Request -- An object that encapsulates the state of a request. The
39 headers, e.g. a User-Agent.
41 BaseHandler --
[all …]
/third_party/skia/third_party/externals/libpng/
DCHANGES1 CHANGES - changes for libpng
3 version 0.1 [March 29, 1995]
4 initial work-in-progress release
6 version 0.2 [April 1, 1995]
10 version 0.3 [April 8, 1995]
21 version 0.4 [April 26, 1995]
32 version 0.5 [April 30, 1995]
37 version 0.6 [May 1, 1995]
44 version 0.7 [June 24, 1995]
50 version 0.71 [June 26, 1995]
[all …]
/third_party/flutter/skia/third_party/externals/libpng/
DCHANGES1 CHANGES - changes for libpng
3 version 0.1 [March 29, 1995]
4 initial work-in-progress release
6 version 0.2 [April 1, 1995]
10 version 0.3 [April 8, 1995]
21 version 0.4 [April 26, 1995]
32 version 0.5 [April 30, 1995]
37 version 0.6 [May 1, 1995]
44 version 0.7 [June 24, 1995]
50 version 0.71 [June 26, 1995]
[all …]
/third_party/libpng/
DCHANGES1 CHANGES - changes for libpng
3 version 0.1 [March 29, 1995]
4 initial work-in-progress release
6 version 0.2 [April 1, 1995]
10 version 0.3 [April 8, 1995]
21 version 0.4 [April 26, 1995]
32 version 0.5 [April 30, 1995]
37 version 0.6 [May 1, 1995]
44 version 0.7 [June 24, 1995]
50 version 0.71 [June 26, 1995]
[all …]

123