You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@RafalMaziejukIntel : In your latest work with the SYCL benchmark, have you been using this script? could you confirm on your side why we have the current line?
Everywhere I am familiar with, it is /usr/bin/env rather than /bin/env. After changing this I could get compute-benchmarks to compile
diff --git a/scripts/dpcpp-proxy.sh b/scripts/dpcpp-proxy.sh
index d0bc740..f179fc5 100755
--- a/scripts/dpcpp-proxy.sh
+++ b/scripts/dpcpp-proxy.sh
@@ -1,4 +1,4 @@
-#!/bin/env bash
+#!/usr/bin/env bash
Copyright (C) 2022 Intel Corporation
@@ -16,4 +16,4 @@ if [[ " $@ " =~ .\ -fsycl\ . ]]; then
dpcpp "${@:2}"
else
"$@"
-fi
\ No newline at end of file
+fi
The text was updated successfully, but these errors were encountered: