aboutsummaryrefslogtreecommitdiffstats
path: root/src/build-data/makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/build-data/makefile.in')
-rw-r--r--src/build-data/makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/build-data/makefile.in b/src/build-data/makefile.in
index 994963112..2039ade4e 100644
--- a/src/build-data/makefile.in
+++ b/src/build-data/makefile.in
@@ -114,22 +114,22 @@ fuzzer_corpus_zip: fuzzer_corpus
%{for lib_build_info}
%{obj}: %{src}
- $(CXX) %{isa_flags} $(SO_OBJ_FLAGS) $(BUILD_FLAGS) %{include_paths} %{dash_c} %{src} %{dash_o}$@
+ $(CXX) $(SO_OBJ_FLAGS) $(BUILD_FLAGS) %{isa_flags} %{include_paths} %{dash_c} %{src} %{dash_o}$@
%{endfor}
%{for cli_build_info}
%{obj}: %{src}
- $(CXX) %{isa_flags} $(BUILD_FLAGS) %{include_paths} %{dash_c} %{src} %{dash_o}$@
+ $(CXX) $(BUILD_FLAGS) %{isa_flags} %{include_paths} %{dash_c} %{src} %{dash_o}$@
%{endfor}
%{for test_build_info}
%{obj}: %{src}
- $(CXX) %{isa_flags} $(BUILD_FLAGS) %{include_paths} %{dash_c} %{src} %{dash_o}$@
+ $(CXX) $(BUILD_FLAGS) %{isa_flags} %{include_paths} %{dash_c} %{src} %{dash_o}$@
%{endfor}
%{for fuzzer_build_info}
%{obj}: %{src}
- $(CXX) %{isa_flags} $(BUILD_FLAGS) %{include_paths} %{dash_c} %{src} %{dash_o}$@
+ $(CXX) $(BUILD_FLAGS) %{isa_flags} %{include_paths} %{dash_c} %{src} %{dash_o}$@
%{exe}: %{obj} $(LIBRARIES)
$(EXE_LINK_CMD) %{obj} $(EXE_LINKS_TO) %{fuzzer_lib} %{output_to_exe}$@