moved os_prereqs

This commit is contained in:
Emendir
2025-11-28 18:47:17 +01:00
parent fc35214d41
commit 357bf864a3
8 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ set -euo pipefail # Exit if any command/script fails
LIBOQS_REPO="https://github.com/open-quantum-safe/liboqs.git"
LIBOQS_TAG="0.14.0" # adjust if needed
LIBOQS_INSTALL_PREFIX="/usr/local/lib/"
export LD_LIBRARY_PATH="/usr/lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"
export LD_LIBRARY_PATH="/usr/local/lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"
# Number of parallel build jobs
NPROC=$(( $(nproc) - 1 ))

View File

@@ -3,7 +3,7 @@
# the absolute path of this script's directory
_SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 ; pwd -P )"
PROJ_DIR="$( cd -- "${_SCRIPT_DIR}/../../../" >/dev/null 2>&1 ; pwd -P )"
PROJ_DIR="$( cd -- "${_SCRIPT_DIR}/../../" >/dev/null 2>&1 ; pwd -P )"
check_commands() {