OLD | NEW |
1 #!/bin/bash | 1 #!/bin/bash |
2 # Copyright (c) 2015 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2015 The Native Client Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 # Samba doesn't seem to support building outside the source tree. | 6 # Samba doesn't seem to support building outside the source tree. |
7 BUILD_DIR=${SRC_DIR} | 7 BUILD_DIR=${SRC_DIR} |
8 | 8 |
9 EnableGlibcCompat | 9 EnableGlibcCompat |
10 | 10 |
11 ConfigureStep() { | 11 ConfigureStep() { |
12 conf_build=$(/bin/sh "${SCRIPT_DIR}/config.guess") | |
13 | |
14 SetupCrossEnvironment | 12 SetupCrossEnvironment |
15 | 13 |
16 local CONFIGURE=${NACL_CONFIGURE_PATH:-${SRC_DIR}/configure} | |
17 local conf_host=${NACL_CROSS_PREFIX} | |
18 if [ "${NACL_ARCH}" = "pnacl" -o "${NACL_ARCH}" = "emscripten" ]; then | |
19 # The PNaCl tools use "pnacl-" as the prefix, but config.sub | |
20 # does not know about "pnacl". It only knows about "le32-nacl". | |
21 # Unfortunately, most of the config.subs here are so old that | |
22 # it doesn't know about that "le32" either. So we just say "nacl". | |
23 conf_host="nacl" | |
24 fi | |
25 | |
26 # Inject a shim that speed up pnacl invocations for configure. | 14 # Inject a shim that speed up pnacl invocations for configure. |
27 if [ "${NACL_ARCH}" = "pnacl" ]; then | 15 if [ "${NACL_ARCH}" = "pnacl" ]; then |
28 local PNACL_CONF_SHIM="${TOOLS_DIR}/pnacl-configure-shim.py" | 16 local PNACL_CONF_SHIM="${TOOLS_DIR}/pnacl-configure-shim.py" |
29 CC="${PNACL_CONF_SHIM} ${CC}" | 17 CC="${PNACL_CONF_SHIM} ${CC}" |
30 fi | 18 fi |
31 | 19 |
32 CC="${START_DIR}/cc_shim.sh ${CC}" | 20 CC="${START_DIR}/cc_shim.sh ${CC}" |
33 | 21 |
34 # Specify both --build and --host options. This forces autoconf into cross | 22 # Specify both --build and --host options. This forces autoconf into cross |
35 # compile mode. This is useful since the autodection doesn't always works. | 23 # compile mode. This is useful since the autodection doesn't always works. |
36 # For example a trivial PNaCl binary can sometimes run on the linux host if | 24 # For example a trivial PNaCl binary can sometimes run on the linux host if |
37 # it has the correct LLVM bimfmt support. What is more, autoconf will | 25 # it has the correct LLVM bimfmt support. What is more, autoconf will |
38 # generate a warning if only --host is specified. | 26 # generate a warning if only --host is specified. |
39 LogExecute "${CONFIGURE}" \ | 27 LogExecute "${SRC_DIR}/configure" \ |
40 --build=${conf_build} \ | 28 --build=${CONF_BUILD} \ |
41 --hostcc=gcc \ | 29 --hostcc=gcc \ |
42 --cross-compile \ | 30 --cross-compile \ |
43 --cross-answers=${START_DIR}/answers \ | 31 --cross-answers=${START_DIR}/answers \ |
44 --prefix=${PREFIX} | 32 --prefix=${PREFIX} |
45 } | 33 } |
46 | 34 |
47 BuildStep() { | 35 BuildStep() { |
48 WAF_ARGS="--targets=smbclient" | 36 WAF_ARGS="--targets=smbclient" |
49 if [ "${VERBOSE:-}" = "1" ]; then | 37 if [ "${VERBOSE:-}" = "1" ]; then |
50 WAF_ARGS+=" -v" | 38 WAF_ARGS+=" -v" |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 LogExecute ln -sf libwind-samba4.so libwind-samba4.so.0 | 82 LogExecute ln -sf libwind-samba4.so libwind-samba4.so.0 |
95 LogExecute ln -sf libtevent.so libtevent.so.0 | 83 LogExecute ln -sf libtevent.so libtevent.so.0 |
96 LogExecute ln -sf libgssapi-samba4.so libgssapi-samba4.so.2 | 84 LogExecute ln -sf libgssapi-samba4.so libgssapi-samba4.so.2 |
97 LogExecute ln -sf libhcrypto-samba4.so libhcrypto-samba4.so.5 | 85 LogExecute ln -sf libhcrypto-samba4.so libhcrypto-samba4.so.5 |
98 LogExecute ln -sf libheimbase-samba4.so libheimbase-samba4.so.1 | 86 LogExecute ln -sf libheimbase-samba4.so libheimbase-samba4.so.1 |
99 LogExecute ln -sf libndr-krb5pac.so libndr-krb5pac.so.0 | 87 LogExecute ln -sf libndr-krb5pac.so libndr-krb5pac.so.0 |
100 LogExecute ln -sf libtevent-util.so libtevent-util.so.0 | 88 LogExecute ln -sf libtevent-util.so libtevent-util.so.0 |
101 LogExecute ln -sf libsamba-credentials.so libsamba-credentials.so.0 | 89 LogExecute ln -sf libsamba-credentials.so libsamba-credentials.so.0 |
102 LogExecute ln -sf libsamba-hostconfig.so libsamba-hostconfig.so.0 | 90 LogExecute ln -sf libsamba-hostconfig.so libsamba-hostconfig.so.0 |
103 } | 91 } |
OLD | NEW |