Home
last modified time | relevance | path

Searched +full:build +full:- +full:mac +full:- +full:universal (Results 1 – 25 of 183) sorted by relevance

12345678

/external/python/cpython2/Mac/
DREADME2 Python on Mac OS X README
6 Jack Jansen (2004-07),
7 Ronald Oussoren (2010-04),
8 Ned Deily (2014-05)
12 This document provides a quick overview of some Mac OS X specific features in
18 * ``--enable-framework[=DIR]``
20 If this argument is specified the build will create a Python.framework rather
22 _`Building and using a framework-based Python on Mac OS X` for more
29 $ ./configure --enable-framework=/Users/ronald/Library/Frameworks
34 command-line tools in ``/Users/ronald/bin``.
[all …]
/external/python/cpython2/Mac/BuildScript/
DREADME.txt1 Building a Python Mac OS X distribution
5 -------
7 The instructions in this README are incomplete and not up-to-date.
9 package from the now obsolete bundle-format installer package produced
10 by ``build-installer.py``.
12 The ``build-installer.py`` script creates Python distributions, including
13 certain third-party libraries as necessary. It builds a complete
14 framework-based Python out-of-tree, installs it in a funny place with
23 Beginning with Python 2.7.9, PSF practice is to build two installer variants
28 transforming the output build artifacts into signed flat packages is not
[all …]
/external/flatbuffers/.github/workflows/
Dbuild.yml2 permissions: read-all
9 - "*" # new tag version, like `0.8.4` or else
11 - master
14 - master
17 build-linux:
21 digests-gcc: ${{ steps.hash-gcc.outputs.hashes }}
22 digests-clang: ${{ steps.hash-clang.outputs.hashes }}
23 name: Build Linux
24 runs-on: ubuntu-latest
27 cxx: [g++-10, clang++-12]
[all …]
/external/python/cpython3/Mac/
DREADME.rst6 Jack Jansen (2004-07),
7 Ronald Oussoren (2010-04),
8 Ned Deily (2012-06)
18 a compiler that includes an SDK that targets the OS on the build machine, that is
29 * ``--enable-framework[=DIR]``
31 If this argument is specified the build will create a Python.framework rather
33 _`Building and using a framework-based Python on macOS` for more
40 $ ./configure --enable-framework=/Users/ronald/Library/Frameworks
45 command-line tools in ``/Users/ronald/bin``.
47 * ``--with-framework-name=NAME``
[all …]
/external/capstone/
Dmake.sh4 # By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2015
6 # Note: to cross-compile "nix32" on Linux, package gcc-multilib is required.
9 [ ${MAKE_JOBS} -lt 1 ] && \
12 # build Android lib for only one supported architecture
14 if [ -z "$NDK" ]; then
19 HOSTOS=$(uname -s | tr 'LD' 'ld')
20 HOSTARCH=$(uname -m)
27 [ -n "$APILEVEL" ] || APILEVEL="android-14" # default to ICS
28 CROSS=arm-linux-androideabi
31 [ -n "$APILEVEL" ] || APILEVEL="android-21" # first with arm64
[all …]
/external/clang/www/
DUniversalDriver.html1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
5 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
6 <title>Clang - Universal Driver</title>
12 <!--#include virtual="menu.html.incl"-->
16 <h1>The Clang Universal Driver Project</h1>
27 underlying cross-compilation abilities of clang.</p>
30 compilation is done, based on the idea of a <i>universal driver</i>. The key
34 this entry point (the universal driver) would have access to all the information
35 that the driver, compiler, and other tools need to build applications for that
38 <p>This is a large and open-ended project. It's eventual success depends not
[all …]
/external/python/cpython3/Mac/BuildScript/
DREADME.rst1 Building a Python Mac OS X distribution
4 The ``build-install.py`` script creates Python distributions, including
5 certain third-party libraries as necessary. It builds a complete
6 framework-based Python out-of-tree, installs it in a funny place with
25 available in the on-line Apple Developer Documentation and man pages.
27 A goal of PSF-provided (python.org) Python binaries for macOS is to
28 support a wide-range of operating system releases with one set of
30 binaries is macOS 10.9; it is still possible to build Python and
39 and weak-linking). To build a Python that is to be used on a
40 range of macOS releases, it was necessary to always build on the
[all …]
/external/libjpeg-turbo/
DBUILDING.md1 Building libjpeg-turbo
5 Build Requirements
6 ------------------
11 - [CMake](http://www.cmake.org) v2.8.12 or later
13 - [NASM](http://www.nasm.us) or [Yasm](http://yasm.tortall.net)
14 (if building x86 or x86-64 SIMD extensions)
19 - NOTE: Currently, if it is desirable to hide the SIMD function symbols in
20 Mac executables or shared libraries that statically link with
21 libjpeg-turbo, then NASM 2.14 or later or Yasm must be used when
22 building libjpeg-turbo.
[all …]
/external/python/cpython2/Doc/using/
Dmac.rst2 .. _using-on-mac:
8 :Author: Bob Savage <bobsavage@mac.com>
11 Python on a Macintosh running Mac OS X is in principle very similar to Python on
15 The Mac-specific modules are documented in :ref:`mac-specific-services`.
17 Python on Mac OS 9 or earlier can be quite different from Python on Unix or
20 installers for the latest 2.3 release for Mac OS 9 and related documentation.
23 .. _getting-osx:
28 Mac OS X 10.8 comes with Python 2.7 pre-installed by Apple. If you wish, you
30 (https://www.python.org). A current "universal binary" build of Python, which
31 runs natively on the Mac's new Intel and legacy PPC CPU's, is available there.
[all …]
/external/python/cpython3/Modules/_decimal/
DREADME.txt7 library for correctly-rounded arbitrary precision decimal floating point
12 Build process for the module
15 As usual, the build process for _decimal.so is driven by setup.py in the top
16 level directory. setup.py autodetects the following build configurations:
18 1) x64 - 64-bit Python, x86_64 processor (AMD, Intel)
20 2) uint128 - 64-bit Python, compiler provides __uint128_t (gcc)
22 3) ansi64 - 64-bit Python, ANSI C
24 4) ppro - 32-bit Python, x86 CPU, PentiumPro or later
26 5) ansi32 - 32-bit Python, ANSI C
28 6) ansi-legacy - 32-bit Python, compiler without uint64_t
[all …]
/external/python/cpython3/Doc/using/
Dmac.rst2 .. _using-on-mac:
5 Using Python on a Mac
8 :Author: Bob Savage <bobsavage@mac.com>
11 Python on a Mac running macOS is in principle very similar to Python on
15 .. _getting-osx:
20 macOS used to come with Python 2.7 pre-installed between versions
21 10.8 and `12.3 <https://developer.apple.com/documentation/macos-release-notes/macos-12_3-release-no…
23 website (https://www.python.org). A current "universal binary" build of Python,
24 which runs natively on the Mac's new Intel and legacy PPC CPU's, is available
31 Python distributions; and PythonLauncher, which handles double-clicking Python
[all …]
/external/python/cpython2/Lib/
D_osx_support.py14 # configuration variables that may contain universal build flags,
15 # like "-arch" or "-isdkroot", that may need customization for
75 """Find a build tool on current path or using xcrun"""
77 or _read_output("/usr/bin/xcrun -find %s" % (toolname,))
88 # the build of Python itself (distutils is used to build standard library
115 # This is needed for higher-level cross-platform tests of get_platform.
129 """Returns True if universal builds are supported on this system"""
131 # then we are running with an Xcode environment that supports universal
132 # builds, in particular -isysroot and -arch arguments to the compiler. This
133 # is in support of allowing 10.4 universal builds to run on 10.3.x systems.
[all …]
/external/python/cpython2/Misc/NEWS.d/
D2.6b1.rst4 .. release date: 18-June-2008
63 .. nonce: SglN-p
145 [CVE-2007-4965] Integer overflow in imageop module.
182 add full-precision summation function to math module, based on Hettinger's
220 http://www.jcea.es/programacion/pybsddb.htm#bsddb3-4.7.3. This code should
257 .. nonce: F-3bCT
269 logging.config: Removed out-of-date comment in _install_handlers and used
357 specifies an offset in bytes for the constructed pointer-like object.
460 Allow 64-bit integer responses (``<i8>``) in XMLRPC transfers.
488 For consistency with other file-like objects, gzip's GzipFile.close() can
[all …]
/external/python/cpython3/Lib/
D_osx_support.py14 # configuration variables that may contain universal build flags,
15 # like "-arch" or "-isdkroot", that may need customization for
74 return fp.read().decode('utf-8').strip() if not os.system(cmd) else None
78 """Find a build tool on current path or using xcrun"""
80 or _read_output("/usr/bin/xcrun -find %s" % (toolname,))
91 # the build of Python itself (distutils is used to build standard library
99 f = open('/System/Library/CoreServices/SystemVersion.plist', encoding="utf-8")
138 # This is needed for higher-level cross-platform tests of get_platform.
160 contents = _read_output('%s -c -E -v - </dev/null' % (cc,), True)
172 _cache_default_sysroot = line[:-12]
[all …]
/external/oss-fuzz/projects/sleuthkit/
Dbuildcorpus.sh1 #!/bin/bash -eu
3 # Script to downloads test data and build the corpus
11 # http://www.apache.org/licenses/LICENSE-2.0
23 # The Fuzzing Project: https://fuzzing-project.org/resources.html
24 # As CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
31 declare -A FLS_TEST_FILES=(
33 ["ext"]="https://files.fuzzing-project.org/filesystems/ext2.img"
34-project.org/filesystems/exfat.img https://files.fuzzing-project.org/filesystems/fat12.img https:/…
35 ["hfs"]="https://files.fuzzing-project.org/filesystems/hfsplus.img"
36 ["iso9660"]="https://files.fuzzing-project.org/discimages/iso9660.iso"
[all …]
/external/python/cpython3/Lib/distutils/tests/
Dtest_util.py81 self.assertEqual(get_platform(), 'win-amd64')
86 '\n[GCC 4.0.1 (Apple Computer, Inc. build 5341)]')
91 'root:xnu-792.25.20~1/RELEASE_I386'), 'i386'))
95 get_config_vars()['CFLAGS'] = ('-fno-strict-aliasing -DNDEBUG -g '
96 '-fwrapv -O3 -Wall -Wstrict-prototypes')
99 sys.maxsize = (2 ** 31)-1
101 self.assertEqual(get_platform(), 'macosx-10.3-i386')
105 # macbook with fat binaries (fat, universal or fat64)
108 get_config_vars()['CFLAGS'] = ('-arch ppc -arch i386 -isysroot '
110 '-fno-strict-aliasing -fno-common '
[all …]
/external/libchrome/base/i18n/
Dfile_util_icu_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
12 #include "build/build_config.h"
19 // file_util winds up using autoreleased objects on the Mac, so this needs
26 // On linux, file path is parsed and filtered as UTF-8.
31 {"bad*\\/file:name?.jpg", "bad---file-name-.jpg"},
32 {"**********::::.txt", "--------------.txt"},
34 {" _ ", "-_-"},
35 {".", "-"},
36 {" .( ). ", "-.( ).-"},
37 {" ", "- -"},
[all …]
/external/cronet/base/metrics/
Dpersistent_histogram_storage.cc2 // Use of this source code is governed by a BSD-style license that can be
16 #include "build/build_config.h"
39 // MAP_ANON is deprecated on Linux but MAP_ANONYMOUS is not universal on Mac. in AllocateLocalMemory()
40 // MAP_SHARED is not available on Linux <2.4 but required on Mac. in AllocateLocalMemory()
42 -1, 0); in AllocateLocalMemory()
82 GlobalHistogramAllocator::Get()->CreateTrackingHistograms(allocator_name); in PersistentHistogramStorage()
90 allocator->UpdateTrackingHistograms(); in ~PersistentHistogramStorage()
98 << "Could not write \"" << allocator->Name() in ~PersistentHistogramStorage()
104 FilePath storage_dir = storage_base_dir_.AppendASCII(allocator->Name()); in ~PersistentHistogramStorage()
110 << "Could not write \"" << allocator->Name() in ~PersistentHistogramStorage()
[all …]
/external/compiler-rt/lib/interception/tests/
DCMakeLists.txt16 -I${COMPILER_RT_SOURCE_DIR}/include
17 -I${COMPILER_RT_SOURCE_DIR}/lib
18 -I${COMPILER_RT_SOURCE_DIR}/lib/interception
19 -fno-rtti
20 -O2
21 -Werror=sign-compare
22 -Wno-non-virtual-dtor)
24 # -gline-tables-only must be enough for these tests, so use it if possible.
26 list(APPEND INTERCEPTION_TEST_CFLAGS_COMMON -gline-tables-only)
28 list(APPEND INTERCEPTION_TEST_CFLAGS_COMMON -g)
[all …]
/external/python/cpython2/
DREADME11 Copyright (c) 1995-2001 Corporation for National Research Initiatives.
14 Copyright (c) 1991-1995 Stichting Mathematisch Centrum.
19 -------------------
35 ---------------------------
41 ------------------------------
43 Congratulations on getting this far. :-)
50 The section `Build instructions' below is still recommended reading.
54 ----------------------
56 Python is an interpreted, interactive object-oriented programming
65 ----------------------
[all …]
/external/autotest/server/site_tests/servo_LabstationVerification/
Dservo_LabstationVerification.py3 # Use of this source code is governed by a BSD-style license that can be
37 IPV4_RE_BLOCK = r'(25[0-5]|2[0-4][0-9]|[01]?[0-9]?[0-9])'
49 """Given a servo's serial retrieve ethernet port mac address.
53 @returns: mac address of the ethernet port as a string
54 @raises: error.TestError: if mac address cannot be inferred
56 # TODO(coconutruben): once mac address retrieval through v4 is
73 raise error.TestError('Unable to retrieve mac address for '
78 """Helper to flip the Universal/Local bit in a given byte.
93 def _from_mac_to_ipv6_eui_64(self, mac): argument
94 """Convert a MAC address (IEEE EUI48) to a IEEE EUI64 node component.
[all …]
/external/python/cpython3/
DREADME.rst5 :alt: CPython build status on GitHub Actions
8 .. image:: https://dev.azure.com/python/cpython/_apis/build/status/Azure%20Pipelines%20CI?branchNam…
9 :alt: CPython build status on Azure DevOps
12 .. image:: https://img.shields.io/badge/discourse-join_chat-brightgreen.svg
17 Copyright © 2001-2023 Python Software Foundation. All rights reserved.
24 -------------------
26 - Website: https://www.python.org
27 - Source code: https://github.com/python/cpython
28 - Issue tracker: https://github.com/python/cpython/issues
29 - Documentation: https://docs.python.org
[all …]
/external/cronet/base/i18n/
Dfile_util_icu_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
12 #include "build/build_config.h"
13 #include "build/chromeos_buildflags.h"
20 // file_util winds up using autoreleased objects on the Mac, so this needs
27 // On linux, file path is parsed and filtered as UTF-8.
32 {"bad*\\/file:name?.jpg", "bad---file-name-.jpg"},
33 {"**********::::.txt", "--------------.txt"},
35 {" _ ", "-_-"},
36 {".", "-"},
37 {" .( ). ", "-.( ).-"},
[all …]
/external/compiler-rt/lib/sanitizer_common/tests/
DCMakeLists.txt49 -I${COMPILER_RT_SOURCE_DIR}/include
50 -I${COMPILER_RT_SOURCE_DIR}/lib
51 -I${COMPILER_RT_SOURCE_DIR}/lib/sanitizer_common
52 -fno-rtti
53 -O2
54 -Werror=sign-compare
55 -Wno-non-virtual-dtor)
59 list(APPEND SANITIZER_TEST_CFLAGS_COMMON -fno-exceptions -DGTEST_HAS_SEH=0)
62 # -gline-tables-only must be enough for these tests, so use it if possible.
64 list(APPEND SANITIZER_TEST_CFLAGS_COMMON -gline-tables-only)
[all …]
/external/webp/
Dxcframeworkbuild.sh5 # An iOS, Mac or Mac Catalyst app can decode WebP images by including
10 # directory (the previous build will be erased if it exists).
13 set -e
21 readonly XCODE=$(xcodebuild -version | grep Xcode | cut -d " " -f2)
22 if [[ -z "${XCODE}" ]] || [[ "${XCODE%%.*}" -lt 11 ]]; then
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 …]

12345678