diff options
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |