summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index b9c1793..815dccc 100755
--- a/build.sh
+++ b/build.sh
@@ -14,7 +14,7 @@ build_opts="$build_dir/main"
lib_path="lib/SDL2"
link_opts="-L $lib_path -lSDL2"
-build_command="g++ -g -Og $include_opts $files $link_opts -o $build_opts"
+build_command="clang++ -std=c++11 -g -Og $include_opts $files $link_opts -o $build_opts"
printf "Building your sdl2 project.\n\nThis is the build command for posteritys' sake:\n\n"
printf "$build_command\n\n"