diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2021-09-28 20:36:50 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2021-09-28 20:36:50 +0300 |
commit | 41273da120ef8e4a2bed7576de0532264b042ee1 (patch) | |
tree | 29b5c6c1a0ec36d22117f42d9acb02615e30b06a /libbuild2/cc | |
parent | dec742c5fa8a8ab35b2bbe96f990a84959164f66 (diff) |
Adapt to libbutl headers extension change from .mxx to .hxx
Diffstat (limited to 'libbuild2/cc')
-rw-r--r-- | libbuild2/cc/guess.cxx | 2 | ||||
-rw-r--r-- | libbuild2/cc/lexer.hxx | 4 | ||||
-rw-r--r-- | libbuild2/cc/link-rule.cxx | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/libbuild2/cc/guess.cxx b/libbuild2/cc/guess.cxx index 298d081..69e8219 100644 --- a/libbuild2/cc/guess.cxx +++ b/libbuild2/cc/guess.cxx @@ -1687,7 +1687,7 @@ namespace build2 // Now we need to map x86, x64, and ARM to the target triplets. The // problem is, there aren't any established ones so we got to invent // them ourselves. Based on the discussion in - // <libbutl/target-triplet.mxx>, we need something in the + // <libbutl/target-triplet.hxx>, we need something in the // CPU-VENDOR-OS-ABI form. // // The CPU part is fairly straightforward with x86 mapped to 'i386' diff --git a/libbuild2/cc/lexer.hxx b/libbuild2/cc/lexer.hxx index dc392c6..81e0d97 100644 --- a/libbuild2/cc/lexer.hxx +++ b/libbuild2/cc/lexer.hxx @@ -4,8 +4,8 @@ #ifndef LIBBUILD2_CC_LEXER_HXX #define LIBBUILD2_CC_LEXER_HXX -#include <libbutl/sha256.mxx> -#include <libbutl/char-scanner.mxx> +#include <libbutl/sha256.hxx> +#include <libbutl/char-scanner.hxx> #include <libbuild2/types.hxx> #include <libbuild2/utility.hxx> diff --git a/libbuild2/cc/link-rule.cxx b/libbuild2/cc/link-rule.cxx index d8f22d4..d2ffb04 100644 --- a/libbuild2/cc/link-rule.cxx +++ b/libbuild2/cc/link-rule.cxx @@ -6,7 +6,7 @@ #include <cstdlib> // exit() #include <cstring> // strlen() -#include <libbutl/filesystem.mxx> // file_exists(), path_search() +#include <libbutl/filesystem.hxx> // file_exists(), path_search() #include <libbuild2/depdb.hxx> #include <libbuild2/scope.hxx> |