diff options
author | Frederico Linhares <fred@linhares.blue> | 2022-10-19 11:09:35 -0300 |
---|---|---|
committer | Frederico Linhares <fred@linhares.blue> | 2022-10-19 11:09:35 -0300 |
commit | 5f001f665d23da72a410995718b87079a87450fb (patch) | |
tree | 8b664112f3d831b636b000a57ff1b229b039aff1 | |
parent | 9d6d723846d737b0bcc6b51afefcf313f723dcd0 (diff) |
buil Use C++20 instead of C++17
-rw-r--r-- | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -100,7 +100,7 @@ task :doc do end rule '.o' => ['.cpp', "mruby-#{MRUBY_VERSION}"] do |t| - system("g++ -D DEBUG=1 -c -std=c++17 -Imruby-#{MRUBY_VERSION}/include/ "\ + system("g++ -D DEBUG=1 -c -std=c++20 -Imruby-#{MRUBY_VERSION}/include/ "\ "#{t.source} -o #{t.name}") end |