summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederico Linhares <fred@linhares.blue>2022-10-19 11:09:35 -0300
committerFrederico Linhares <fred@linhares.blue>2022-10-19 11:09:35 -0300
commit5f001f665d23da72a410995718b87079a87450fb (patch)
tree8b664112f3d831b636b000a57ff1b229b039aff1
parent9d6d723846d737b0bcc6b51afefcf313f723dcd0 (diff)
buil Use C++20 instead of C++17
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 46d6bfe..c5883e5 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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