mirror of
https://github.com/red0124/ssp.git
synced 2025-01-23 13:05:20 +01:00
12 lines
313 B
Bash
Executable File
12 lines
313 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# SPDX-FileCopyrightText: 2020 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
#shellcheck disable=SC2010
|
|
LATEST_VERSION=$(ls -1 /opt/intel/oneapi/compiler/ | grep -v latest | sort | tail -1)
|
|
# shellcheck source=/dev/null
|
|
source /opt/intel/oneapi/compiler/"$LATEST_VERSION"/env/vars.sh
|
|
CXX=dpcpp
|