26 строки
755 B
Bash
Executable File
26 строки
755 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) Microsoft. All rights reserved.
|
|
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
set -x # Set trace on
|
|
set -o errexit # Exit if command failed
|
|
set -o nounset # Exit if variable not set
|
|
set -o pipefail # Exit if pipe failed
|
|
|
|
sw_vers
|
|
gcc --version
|
|
openssl version
|
|
curl --version
|
|
|
|
script_dir=$(cd "$(dirname "$0")" && pwd)
|
|
build_root=$(cd "${script_dir}/.." && pwd)
|
|
build_folder=$build_root"/cmake"
|
|
|
|
CORES=$(grep -c ^processor /proc/cpuinfo 2>/dev/null || sysctl -n hw.ncpu)
|
|
|
|
rm -r -f $build_folder
|
|
mkdir -p $build_folder
|
|
pushd $build_folder
|
|
cmake .. -DOPENSSL_ROOT_DIR:PATH=/usr/local/opt/openssl -Duse_openssl:bool=ON -Drun_unittests:bool=ON
|
|
cmake --build . -- --jobs=$CORES
|