opuntiaOS - an operating system targeting x86 and ARMv7
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[build] Swap arguments to linker

+2 -2
+2 -2
toolchains/BUILD.gn
··· 47 47 } 48 48 tool("link") { 49 49 outputs = [ "{{root_out_dir}}/{{target_output_name}}{{output_extension}}" ] 50 - command = "$gnu_ld {{inputs}} -o {{output}} {{ldflags}} {{solibs}} {{libs}}" 50 + command = "$gnu_ld -o {{output}} {{inputs}} {{ldflags}} {{solibs}} {{libs}}" 51 51 description = "LINK {{output}}" 52 52 } 53 53 tool("stamp") { ··· 125 125 tool("link") { 126 126 outputs = [ "{{root_out_dir}}/{{target_output_name}}{{output_extension}}" ] 127 127 command = 128 - "$llvm_ld {{inputs}} -o {{output}} {{ldflags}} {{solibs}} {{libs}}" 128 + "$llvm_ld -o {{output}} {{inputs}} {{ldflags}} {{solibs}} {{libs}}" 129 129 description = "LINK {{output}}" 130 130 } 131 131 tool("stamp") {