aboutsummaryrefslogtreecommitdiffstats
path: root/src/build-data/makefile.in
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-03-15 11:15:26 -0400
committerJack Lloyd <[email protected]>2018-03-15 11:15:26 -0400
commit16355dfa26222c761b2b35c50e780ad518ccaf3f (patch)
tree9a6ede98450acb5e91e74936c486df900400ec3b /src/build-data/makefile.in
parent5b948bec654fb1cbe269601874c0cbb7d1aef245 (diff)
Put ISA enabling flags after CXXFLAGS to override as needed
See GH #1495
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}$@