Home
last modified time | relevance | path

Searched +full:1 +full:- +full:installer +full:- +full:darwin +full:- +full:x86_64 (Results 1 – 25 of 27) sorted by relevance

12

/external/libcxx/utils/google-benchmark/
D.travis.yml7 - /usr/local/bin:$PATH
11 - compiler: gcc
15 - lcov
17 - compiler: gcc
19 - compiler: gcc
21 - compiler: gcc
25 - g++-multilib
27 - compiler: gcc
31 - g++-multilib
33 - compiler: gcc
[all …]
/external/google-benchmark/
D.travis.yml7 - /usr/local/bin:$PATH
11 - compiler: gcc
15 - lcov
17 - compiler: gcc
19 - compiler: gcc
21 - compiler: gcc
25 - g++-multilib
27 - compiler: gcc
31 - g++-multilib
33 - compiler: gcc
[all …]
/external/libjpeg-turbo/
DBUILDING.md1 Building libjpeg-turbo
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)
16 * If using NASM, 2.10 or later (except 2.11.08) is required for an x86-64 Mac
17 build (2.11.08 does not work properly with libjpeg-turbo's x86-64 SIMD code
21 - NOTE: Currently, if it is desirable to hide the SIMD function symbols in
23 libjpeg-turbo, then YASM must be used when building libjpeg-turbo.
34 ARCH=`uname -m`
[all …]
/external/python/cpython2/Mac/BuildScript/
Dbuild-installer.py6 - support Intel 64-bit-only () and 32-bit-only installer builds
7 - build and link with private Tcl/Tk 8.6 for 10.9+ builds
8 - deprecate use of explicit SDK (--sdk-path=) since all but the oldest
13 supported with build-installer.
14 - use generic "gcc" as compiler (CC env var) rather than "gcc-4.2"
21 Sphinx, build-installer.py should also be converted to use python3!
23 For 10.9 or greater deployment targets, build-installer builds and links
25 apply. Otherwise, build-installer requires an installed third-party version
51 INCLUDE_TIMESTAMP = 1
52 VERBOSE = 1
[all …]
/external/python/cpython3/Mac/BuildScript/
Dbuild-installer.py6 - support Intel 64-bit-only () and 32-bit-only installer builds
7 - build and use internal Tcl/Tk 8.6 for 10.6+ builds
8 - deprecate use of explicit SDK (--sdk-path=) since all but the oldest
13 supported with build-installer.
14 - use generic "gcc" as compiler (CC env var) rather than "gcc-4.2"
17 - support SDKROOT and DEVELOPER_DIR xcrun env variables
18 - test with 10.5 and 10.4 and determine support status
25 Sphinx, build-installer.py should also be converted to use python3!
28 build-installer builds and links with its own copy of Tcl/Tk 8.6.
29 Otherwise, it requires an installed third-party version of
[all …]
/external/protobuf/
Dtests.sh16 if [ -f src/protoc ]; then
21 if [[ $(uname -s) == "Linux" && "$TRAVIS" == "true" ]]; then
24 sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
25 sudo apt-get update -qq
26 sudo apt-get install -qq g++-4.8
27 export CXX="g++-4.8" CC="gcc-4.8"
32 make -j2
37 make check -j2
41 cd benchmarks && make && ./generate-datasets && cd ..
47 make distcheck -j2
[all …]
/external/python/cpython3/Lib/
D_osx_support.py15 # like "-arch" or "-isdkroot", that may need customization for
71 return fp.read().decode('utf-8').strip() if not os.system(cmd) else None
77 or _read_output("/usr/bin/xcrun -find %s" % (toolname,))
98 # We're on a plain darwin box, fall back to the default
108 _SYSTEM_VERSION = '.'.join(m.group(1).split('.')[:2])
115 # This is needed for higher-level cross-platform tests of get_platform.
132 # builds, in particular -isysroot and -arch arguments to the compiler. This
149 # (or rather Xcode) releases. With older releases (up-to 10.5)
155 # Xcode releases. Up to Xcode 4 it was possible to use 'gcc-4.2'
157 # gcc-4.2 is either not present, or a copy of 'llvm-gcc' that
[all …]
/external/python/cpython2/Lib/
D_osx_support.py15 # like "-arch" or "-isdkroot", that may need customization for
77 or _read_output("/usr/bin/xcrun -find %s" % (toolname,))
98 # We're on a plain darwin box, fall back to the default
108 _SYSTEM_VERSION = '.'.join(m.group(1).split('.')[:2])
115 # This is needed for higher-level cross-platform tests of get_platform.
132 # builds, in particular -isysroot and -arch arguments to the compiler. This
149 # (or rather Xcode) releases. With older releases (up-to 10.5)
155 # Xcode releases. Up to Xcode 4 it was possible to use 'gcc-4.2'
157 # gcc-4.2 is either not present, or a copy of 'llvm-gcc' that
182 # Compiler is GCC, check if it is LLVM-GCC
[all …]
/external/tensorflow/
Dconfigure.py7 # http://www.apache.org/licenses/LICENSE-2.0
29 # pylint: disable=g-import-not-at-top
34 # pylint: enable=g-import-not-at-top
56 'lib64/', 'lib/powerpc64le-linux-gnu/', 'lib/x86_64-linux-gnu/', ''
66 _DEFAULT_TENSORRT_PATH_LINUX = '/usr/lib/powerpc64le-linux-gnu/'
68 _DEFAULT_TENSORRT_PATH_LINUX = '/usr/lib/%s-linux-gnu' % platform.machine()
84 return platform.system() == 'Darwin'
100 answer = input(question) # pylint: disable=bad-builtin
107 """Force symlink, equivalent of 'ln -sf'.
144 write_to_bazelrc('build --action_env %s="%s"' % (var_name, str(var)))
[all …]
/external/python/cpython3/Misc/
DHISTORY2 --------------
13 Release date: 2017-01-17
21 Release date: 2017-01-02
24 -----------------
26 - Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X
29 - Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug
33 -------
35 - Issue #28563: Fixed possible DoS and arbitrary code execution when handle
39 - In the curses module, raise an error if window.getstr() or window.instr() is
42 - Issue #27783: Fix possible usage of uninitialized memory in operator.methodcaller.
[all …]
/external/libogg/
Daclocal.m41 # generated automatically by aclocal 1.9.6 -*- Autoconf -*-
14 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
50 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
57 # ------------------
60 [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1,
62 [m4_fatal([Libtool version $1 or higher is required],
68 # ------------------
79 # ------------------
88 m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
99 _LT_SET_OPTIONS([$0], [$1])
[all …]
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
9 ## --------------------- ##
11 ## --------------------- ##
14 DUALCASE=1; export DUALCASE # for MKS sh
15 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
18 # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
20 alias -g '${1+"$@"}'='"$@"'
23 case `(set -o) 2>/dev/null` in
24 *posix*) set -o posix ;;
45 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
[all …]
/external/iperf3/
Daclocal.m41 # generated automatically by aclocal 1.16.1 -*- Autoconf -*-
3 # Copyright (C) 1996-2018 Free Software Foundation, Inc.
23 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
25 # Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc.
60 # ------------------
63 [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1,
65 [m4_fatal([Libtool version $1 or higher is required],
71 # ------------------
82 # ------------------
92 m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
[all …]
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
8 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
13 ## -------------------- ##
15 ## -------------------- ##
18 DUALCASE=1; export DUALCASE # for MKS sh
19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
22 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
24 alias -g '${1+"$@"}'='"$@"'
27 case `(set -o) 2>/dev/null` in #(
29 set -o posix ;; #(
[all …]
/external/cmockery/cmockery_0_1_2/
Daclocal.m41 # generated automatically by aclocal 1.9.6 -*- Autoconf -*-
14 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
16 # serial 48 Debian 1.5.22-2 AC_PROG_LIBTOOL
19 # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED)
20 # -----------------------------------------------------------
25 [m4_ifdef([AC_PROVIDE_$1],
30 # ---------------
65 # ----------------
85 # ----------------
125 # metacharacters that are still active within double-quoted strings.
[all …]
/external/python/cpython2/Modules/_ctypes/libffi/
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
8 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
13 ## -------------------- ##
15 ## -------------------- ##
18 DUALCASE=1; export DUALCASE # for MKS sh
19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
22 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
24 alias -g '${1+"$@"}'='"$@"'
27 case `(set -o) 2>/dev/null` in #(
29 set -o posix ;; #(
[all …]
/external/libpng/
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
5 # Report bugs to <png-mng-implement@lists.sourceforge.net>.
8 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
13 ## -------------------- ##
15 ## -------------------- ##
18 DUALCASE=1; export DUALCASE # for MKS sh
19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
22 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
24 alias -g '${1+"$@"}'='"$@"'
27 case `(set -o) 2>/dev/null` in #(
[all …]
/external/e2fsprogs/debian/
Dchangelog1 e2fsprogs (1.44.4-2) unstable; urgency=medium
7 * Improve version dependency for libcom-err and ss2 for e2fsprogs
9 -- Theodore Y. Ts'o <tytso@mit.edu> Wed, 22 Aug 2018 19:30:17 -0400
11 e2fsprogs (1.44.4-1) unstable; urgency=medium
23 -- Theodore Y. Ts'o <tytso@mit.edu> Sat, 18 Aug 2018 20:46:29 -0400
25 e2fsprogs (1.44.3-1) unstable; urgency=medium
31 -- Theodore Y. Ts'o <tytso@mit.edu> Tue, 10 Jul 2018 01:23:17 -0400
33 e2fsprogs (1.44.3~rc2-1) unstable; urgency=low
37 display the low-level contents of an inode's i_blocks and extra
39 * The dumpe2fs command now will show information about the Multi-Mount
[all …]
/external/lmfit/
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
3 # Generated by GNU Autoconf 2.69 for lmfit 6:1.
5 # Report bugs to <http://apps.jcns.fz-juelich.de/lmfit>.
8 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
13 ## -------------------- ##
15 ## -------------------- ##
18 DUALCASE=1; export DUALCASE # for MKS sh
19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
22 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
24 alias -g '${1+"$@"}'='"$@"'
[all …]
/external/speex/
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
5 # Report bugs to <speex-dev@xiph.org>.
8 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
13 ## -------------------- ##
15 ## -------------------- ##
18 DUALCASE=1; export DUALCASE # for MKS sh
19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
22 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
24 alias -g '${1+"$@"}'='"$@"'
27 case `(set -o) 2>/dev/null` in #(
[all …]
/external/python/cpython3/Doc/whatsnew/
D3.5.rst36 sufficient; the e-mail address isn't necessary.
54 :pep:`478` - Python 3.5 Release Schedule
57 Summary -- Release highlights
62 * :ref:`PEP 492 <whatsnew-pep-492>`, coroutines with async and await syntax.
63 * :ref:`PEP 465 <whatsnew-pep-465>`, a new matrix multiplication operator: ``a @ b``.
64 * :ref:`PEP 448 <whatsnew-pep-448>`, additional unpacking generalizations.
69 * :mod:`typing`: :ref:`PEP 484 -- Type Hints <whatsnew-pep-484>`.
71 <whatsnew-zipapp>`.
74 New built-in features:
76 * ``bytes % args``, ``bytearray % args``: :ref:`PEP 461 <whatsnew-pep-461>` --
[all …]
/external/libexif/
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
5 # Report bugs to <libexif-devel@lists.sourceforge.net>.
15 ## -------------------- ##
17 ## -------------------- ##
20 DUALCASE=1; export DUALCASE # for MKS sh
21 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
24 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
26 alias -g '${1+"$@"}'='"$@"'
29 case `(set -o) 2>/dev/null` in #(
31 set -o posix ;; #(
[all …]
/external/libxkbcommon/xkbcommon/build-aux/
Doutput.02 @%:@ Guess values for system-dependent variables and create Makefiles.
8 @%:@ Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
13 ## -------------------- ##
15 ## -------------------- ##
18 DUALCASE=1; export DUALCASE # for MKS sh
19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
22 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
24 alias -g '${1+"$@"}'='"$@"'
27 case `(set -o) 2>/dev/null` in @%:@(
29 set -o posix ;; @%:@(
[all …]
Doutput.22 @%:@ Guess values for system-dependent variables and create Makefiles.
8 @%:@ Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
13 ## -------------------- ##
15 ## -------------------- ##
18 DUALCASE=1; export DUALCASE # for MKS sh
19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
22 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
24 alias -g '${1+"$@"}'='"$@"'
27 case `(set -o) 2>/dev/null` in @%:@(
29 set -o posix ;; @%:@(
[all …]
Doutput.12 @%:@ Guess values for system-dependent variables and create Makefiles.
8 @%:@ Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
13 ## -------------------- ##
15 ## -------------------- ##
18 DUALCASE=1; export DUALCASE # for MKS sh
19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
22 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
24 alias -g '${1+"$@"}'='"$@"'
27 case `(set -o) 2>/dev/null` in @%:@(
29 set -o posix ;; @%:@(
[all …]

12