Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Makefile for HILE using cray toolchain, building for CPU. #1043

Open
wants to merge 19 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Workaround for mktemp on MacOS in CI library build.
  • Loading branch information
ursg committed Oct 24, 2024
commit ff43287b3d97736cb4983a42ecb36df3cee30ee9
2 changes: 1 addition & 1 deletion build_libraries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rm -rf library-build libraries${PLATFORM}
mkdir -p libraries${PLATFORM}/include
mkdir -p libraries${PLATFORM}/lib

BUILDDIR=`mktemp -t -d vlsiator-library-build-XXXXX`
BUILDDIR=`mktemp -d "${TMPDIR:-/tmp}/vlsiator-library-build-XXXXX`
ln -s $BUILDDIR library-build
cd library-build

Expand Down