Configs: Use proper C++ compiler.

Signed-off-by: Yilin Sun <imi415@imi.moe>
This commit is contained in:
Yilin Sun 2023-03-06 00:25:11 +08:00
parent d31acdb6fa
commit 05ebbc3a9b
Signed by: imi415
GPG Key ID: 17F01E106F9F5E0A
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ MRuby::CrossBuild.new("imxrt1052") do |conf|
end
conf.cxx do |cxx|
cxx.command = conf.cc.command.dup
cxx.command = "arm-none-eabi-g++"
cxx.include_paths = conf.cc.include_paths.dup
cxx.flags = conf.cc.flags.dup
cxx.defines = conf.cc.defines.dup

View File

@ -16,7 +16,7 @@ MRuby::CrossBuild.new("lpc55s69") do |conf|
end
conf.cxx do |cxx|
cxx.command = conf.cc.command.dup
cxx.command = "arm-none-eabi-g++"
cxx.include_paths = conf.cc.include_paths.dup
cxx.flags = conf.cc.flags.dup
cxx.defines = conf.cc.defines.dup