Skip to content

Commit

Permalink
utils.zsh: Use C++11 standard by default
Browse files Browse the repository at this point in the history
Fix a typo so that we actually specify the C++11 standard.
  • Loading branch information
RytoEX committed Mar 20, 2023
1 parent 603e4c8 commit 52f9860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils.zsh/30-build.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ setup_build_parameters() {

as_flags+=(${defaults})
c_flags+=(${defaults})
cxx_flags+=(-stc=c++11 -stdlib=libc++ ${defaults})
cxx_flags+=(-std=c++11 -stdlib=libc++ ${defaults})
ld_flags+=(${defaults})

if (( ${+commands[clang]} )) {
Expand Down

0 comments on commit 52f9860

Please sign in to comment.