123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- #!/bin/bash
- PERL="${BUILD_PREFIX}/bin/perl"
- declare -a _CONFIG_OPTS
- _CONFIG_OPTS+=(--prefix=${PREFIX})
- _CONFIG_OPTS+=(--libdir=lib)
- _CONFIG_OPTS+=(shared)
- _CONFIG_OPTS+=(threads)
- _CONFIG_OPTS+=(no-ssl2) # broken, insecure protocol
- _CONFIG_OPTS+=(no-ssl3) # broken, insecure protocol
- _CONFIG_OPTS+=(no-zlib)
- _CONFIG_OPTS+=(enable-legacy) # necessary to support some function in Python package cryptography
- _BASE_CC=$(basename "${CC}")
- if [[ ${_BASE_CC} == *-* ]]; then
- # We are cross-compiling or using a specific compiler.
- # do not allow config to make any guesses based on uname.
- _CONFIGURATOR="perl ./Configure"
- case ${_BASE_CC} in
- x86_64-*linux*)
- _CONFIG_OPTS+=(linux-x86_64)
- CFLAGS="${CFLAGS} -Wa,--noexecstack"
- ;;
- aarch64-*-linux*)
- _CONFIG_OPTS+=(linux-aarch64)
- CFLAGS="${CFLAGS} -Wa,--noexecstack"
- ;;
- *powerpc64le-*linux*)
- _CONFIG_OPTS+=(linux-ppc64le)
- CFLAGS="${CFLAGS} -Wa,--noexecstack"
- ;;
- # Optimized s390x builds must use -fno-merge-constants.
- # Without this, a string ("private") in the nid_objs table
- # (obj_dat.c) will vanish when libcrypto.so is built.
- # This is currently assumed to be a bug in the -fmerge-constants
- # optimization for this architecture.
- # This issue prevents the OBJ_sn2nid function from ever finding
- # prime256v1, rendering it unusable as an ecparam.
- *s390x-*linux*)
- _CONFIG_OPTS+=(linux64-s390x)
- CFLAGS="${CFLAGS} -Wa,--noexecstack -fno-merge-constants"
- ;;
- *darwin-arm64*|*arm64-*-darwin*)
- _CONFIG_OPTS+=(darwin64-arm64-cc)
- ;;
- *darwin*)
- _CONFIG_OPTS+=(darwin64-x86_64-cc)
- ;;
- esac
- else
- if [[ $(uname) == Darwin ]]; then
- _CONFIG_OPTS+=(darwin64-x86_64-cc)
- _CONFIGURATOR="perl ./Configure"
- else
- # Use config, which is a config.guess-like wrapper around Configure
- _CONFIGURATOR=./config
- fi
- fi
- CC=${CC}" ${CPPFLAGS} ${CFLAGS}" \
- ${_CONFIGURATOR} ${_CONFIG_OPTS[@]} ${LDFLAGS}
- # This is not working yet. It may be important if we want to perform a parallel build
- # as enabled by openssl-1.0.2d-parallel-build.patch where the dependency info is old.
- # makedepend is a tool from xorg, but it seems to be little more than a wrapper for
- # '${CC} -M', so my plan is to replace it with that, or add a package for it? This
- # tool uses xorg headers (and maybe libraries) which is unfortunate.
- # http://stackoverflow.com/questions/6362705/replacing-makedepend-with-cc-mm
- # echo "echo \$*" > "${SRC_DIR}"/makedepend
- # echo "${CC} -M $(echo \"\$*\" | sed s'# --##g')" >> "${SRC_DIR}"/makedepend
- # chmod +x "${SRC_DIR}"/makedepend
- # PATH=${SRC_DIR}:${PATH} make -j1 depend
- make -j${CPU_COUNT} ${VERBOSE_AT}
- # expected error: https://github.com/openssl/openssl/issues/6953
- # OK to ignore: https://github.com/openssl/openssl/issues/6953#issuecomment-415428340
- rm test/recipes/04-test_err.t
- # When testing this via QEMU, even though it ends printing:
- # "ALL TESTS SUCCESSFUL."
- # .. it exits with a failure code.
- if [[ "${HOST}" == "${BUILD}" ]]; then
- # Using verbosity on failed (sub-)tests only VF=1
- make test V=1 > testsuite.log 2>&1 || true
- if ! cat testsuite.log | grep -i "all tests successful"; then
- echo "Testsuite failed! See $(pwd)/testsuite.log for more info."
- cat $(pwd)/testsuite.log
- exit 1
- fi
- fi
- make install_sw install_ssldirs
- # https://github.com/ContinuumIO/anaconda-issues/issues/6424
- if [[ ${HOST} =~ .*linux.* ]]; then
- if execstack -q "${PREFIX}"/lib/libcrypto.so.3.0 | grep -e '^X '; then
- echo "Error, executable stack found in libcrypto.so.3.0"
- exit 1
- fi
- fi
|