Skip to content

Commit 654b5f1

Browse files
committed
Minor cosmetics
1 parent 1ece450 commit 654b5f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

make.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
mkdir -p bin # create directory for executable
55
rm -f bin/OpenCL-Benchmark # prevent execution of old version if compiling fails
66

7-
case "$(uname -a)" in # automatically detect operating system and X11 support on Linux
7+
case "$(uname -a)" in # automatically detect operating system
88
Darwin*) g++ src/*.cpp -o bin/OpenCL-Benchmark -std=c++17 -pthread -O -Wno-comment -I./src/OpenCL/include -framework OpenCL ;; # macOS
99
*Android) g++ src/*.cpp -o bin/OpenCL-Benchmark -std=c++17 -pthread -O -Wno-comment -I./src/OpenCL/include -L/system/vendor/lib64 -lOpenCL ;; # Android
1010
* ) g++ src/*.cpp -o bin/OpenCL-Benchmark -std=c++17 -pthread -O -Wno-comment -I./src/OpenCL/include -L./src/OpenCL/lib -lOpenCL ;; # Linux

0 commit comments

Comments
 (0)