From d90abc648e69cf84defe0dc3d9b6f8663343fb8b Mon Sep 17 00:00:00 2001 From: KOBAYASHI Shuji Date: Sun, 31 Jan 2021 15:08:37 +0900 Subject: Change `.o.d` back to `.d` because `.pi.d` is no longer created --- tasks/toolchains/gcc.rake | 2 +- tasks/toolchains/openwrt.rake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'tasks') diff --git a/tasks/toolchains/gcc.rake b/tasks/toolchains/gcc.rake index a39f087ba..51bda6517 100644 --- a/tasks/toolchains/gcc.rake +++ b/tasks/toolchains/gcc.rake @@ -15,7 +15,7 @@ MRuby::Toolchain.new(:gcc) do |conf, params| end compiler.option_include_path = %q[-I"%s"] compiler.option_define = '-D%s' - compiler.compile_options = %|-MMD -MF "%{outfile}.d" -c #{compile_opt}| + compiler.compile_options = "-MMD -c #{compile_opt}" compiler.preprocess_options = "-E -P #{compile_opt}" compiler.cxx_compile_flag = '-x c++ -std=gnu++03' compiler.cxx_exception_flag = '-fexceptions' diff --git a/tasks/toolchains/openwrt.rake b/tasks/toolchains/openwrt.rake index a903ddd49..6ef3f4e4a 100644 --- a/tasks/toolchains/openwrt.rake +++ b/tasks/toolchains/openwrt.rake @@ -11,7 +11,7 @@ MRuby::Toolchain.new(:openwrt) do |conf| end cc.option_include_path = %q[-I"%s"] cc.option_define = '-D%s' - cc.compile_options = '%{flags} -MMD -MF "%{outfile}.d" -o "%{outfile}" -c "%{infile}"' + cc.compile_options = '%{flags} -MMD -o "%{outfile}" -c "%{infile}"' cc.preprocess_options = '%{flags} -o "%{outfile}" -E -P "%{infile}"' end -- cgit v1.2.3