From 9f5c4c1ae3bff517eefb39130287016514fb31c7 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 6 Jan 2017 17:28:45 +0200 Subject: Store platform targets as typed target_triplet --- build2/function.cxx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'build2/function.cxx') diff --git a/build2/function.cxx b/build2/function.cxx index 8cfb857..c3a08c1 100644 --- a/build2/function.cxx +++ b/build2/function.cxx @@ -301,19 +301,21 @@ namespace build2 // function_map functions; - void builtin_functions (); // functions-builtin.cxx - void path_functions (); // functions-path.cxx - void process_path_functions (); // functions-process-path.cxx - void string_functions (); // functions-string.cxx + void builtin_functions (); // functions-builtin.cxx + void string_functions (); // functions-string.cxx + void path_functions (); // functions-path.cxx + void process_path_functions (); // functions-process-path.cxx + void target_triplet_functions (); // functions-target-triplet.cxx struct functions_init { functions_init () { builtin_functions (); + string_functions (); path_functions (); process_path_functions (); - string_functions (); + target_triplet_functions (); } }; -- cgit v1.1