Skip to content

Commit

Permalink
Refix last change again (adoptium#2517)
Browse files Browse the repository at this point in the history
Signed-off-by: Stewart X Addison <sxa@redhat.com>
  • Loading branch information
sxa authored Mar 4, 2021
1 parent 6c0194e commit daed513
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build-farm/platform-specific-configurations/linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,9 @@ if [ "${ARCHITECTURE}" == "riscv64" -a "`uname -m`" == "x86_64" ]; then
export CXX=$RISCV64/bin/riscv64-unknown-linux-gnu-g++
CONFIGURE_ARGS_FOR_ANY_PLATFORM="${CONFIGURE_ARGS_FOR_ANY_PLATFORM} --openjdk-target=riscv64-unknown-linux-gnu --with-sysroot=/opt/fedora28_riscv_root --with-boot-jdk=$JDK_BOOT_DIR"
BUILD_ARGS="${BUILD_ARGS} -F"
[ -x "$CXX" ] || echo "RISC-V cross compiler $CXX does not exist on this system - cannot continue" && exit 1
if [ ! -x "$CXX" ]; then
echo "RISC-V cross compiler $CXX does not exist on this system - cannot continue"
exit 1
fi
fi

0 comments on commit daed513

Please sign in to comment.