Skip to content
Snippets Groups Projects
Commit ff3acccc authored by midou's avatar midou
Browse files

Add the architecture option in the compile.sh of GYSELAX

parent 65988de8
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
####################################
# Source the right environment
####################################
if [ -z "$1" ]
then
echo "Please provide the targeted machine from:"
ls machines/
echo ""
echo "Example: ./compile.sh occigen-bdw"
exit 1
fi
env_file="machines/$1/env_bench"
if [ ! -f $env_file ]
then
echo "ERROR: $env_file not found!"
exit 1
else
source $env_file
fi
####################################
# GO TO GYSELAX DIRECTORY
####################################
......
#!/bin/bash
####################################
# Source the right environment
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment