| Index: build/toolchain/gcc_toolchain.gni
|
| diff --git a/build/toolchain/gcc_toolchain.gni b/build/toolchain/gcc_toolchain.gni
|
| index fe62e4086583f9be568854e472534b22c0b614ef..3e7bc53f58551175cbafe9d85d774d8bc18c9db5 100644
|
| --- a/build/toolchain/gcc_toolchain.gni
|
| +++ b/build/toolchain/gcc_toolchain.gni
|
| @@ -166,10 +166,8 @@ template("gcc_toolchain") {
|
| }
|
|
|
| tool("asm") {
|
| - # For GCC we can just use the C compiler to compile assembly.
|
| - depfile = "{{output}}.d"
|
| - command = "$cc -MMD -MF $depfile ${rebuild_string}{{defines}} {{include_dirs}} {{asmflags}} -c {{source}} -o {{output}}"
|
| - depsformat = "gcc"
|
| + # We can just use the C compiler to compile assembly.
|
| + command = "$cc ${rebuild_string}{{defines}} {{include_dirs}} {{asmflags}} -c {{source}} -o {{output}}"
|
| description = "ASM {{output}}"
|
| outputs = [
|
| "{{source_out_dir}}/{{target_output_name}}.{{source_name_part}}.o",
|
|
|