From bdbb7e2535009b2a142567a2235ac0a71352c749 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 29 Nov 2019 13:59:20 +0200 Subject: Reorder {cc,c/cxx}.{poptions,loptions} Now it is c/cxx first followed by cc which is the reverse order of coptions since the header/library search paths are examined in the order specified (in contrast to the "last value wins" semantics that we assume for coptions). --- libbuild2/cc/gcc.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbuild2/cc/gcc.cxx') diff --git a/libbuild2/cc/gcc.cxx b/libbuild2/cc/gcc.cxx index cf0ccdc..5857709 100644 --- a/libbuild2/cc/gcc.cxx +++ b/libbuild2/cc/gcc.cxx @@ -184,8 +184,8 @@ namespace build2 append_options (args, rs, c_coptions); append_options (args, rs, x_coptions); append_options (args, tstd); - append_options (args, rs, c_loptions); append_options (args, rs, x_loptions); + append_options (args, rs, c_loptions); append_options (args, rs, x_mode); args.push_back ("-print-search-dirs"); args.push_back (nullptr); -- cgit v1.1