aboutsummaryrefslogtreecommitdiff
path: root/libbuild2
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-10-07 12:13:04 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-10-07 12:13:04 +0200
commitc2599b0d28270d8d1ddcc6e890fddeb41615a833 (patch)
treeb8353ca98167824c7f7ba4a9ca77ff25dd2a9836 /libbuild2
parent4d43fc686427252367576bb1a37724bb45958358 (diff)
Make -print-search-dirs output handling deal better with translations
Diffstat (limited to 'libbuild2')
-rw-r--r--libbuild2/cc/gcc.cxx24
1 files changed, 16 insertions, 8 deletions
diff --git a/libbuild2/cc/gcc.cxx b/libbuild2/cc/gcc.cxx
index 05d8664..9eb8925 100644
--- a/libbuild2/cc/gcc.cxx
+++ b/libbuild2/cc/gcc.cxx
@@ -165,6 +165,21 @@ namespace build2
dir_paths config_module::
gcc_library_search_paths (const process_path& xc, scope& rs) const
{
+ // The output of -print-search-dirs are a bunch of lines that start with
+ // "<name>: =" where name can be "install", "programs", or "libraries".
+ //
+ // If you have English locale, that is. If you set your LC_ALL="tr_TR",
+ // then it becomes "kurulum", "programlar", and "kitapl?klar". Also,
+ // Clang omits "install" while GCC and Intel icc print all three. The
+ // "libraries" seem to be always last, however. Also, the colon and
+ // the following space in "<name>: =" can all be translated (e.g.,
+ // in zh_CN.UTF-8).
+ //
+ // Maybe it's time we stop playing these games and start running
+ // everything with LC_ALL=C? One drawback of this approach is that the
+ // command that we print isn't exactly how we run. Maybe print it with
+ // the environment variables in front?
+ //
dir_paths r;
cstrings args;
@@ -195,19 +210,12 @@ namespace build2
ifdstream is (
move (pr.in_ofd), fdstream_mode::skip, ifdstream::badbit);
- // The output of -print-search-dirs are a bunch of lines that start
- // with "<name>: =" where name can be "install", "programs", or
- // "libraries". If you have English locale, that is. If you set your
- // LC_ALL="tr_TR", then it becomes "kurulum", "programlar", and
- // "kitapl?klar". Also, Clang omits "install" while GCC and Intel icc
- // print all three. The "libraries" seem to be alwasy last, however.
- //
string s;
for (bool found (false); !found && getline (is, s); )
{
found = (s.compare (0, 12, "libraries: =") == 0);
- size_t p (found ? 9 : s.find (": ="));
+ size_t p (found ? 9 : s.find ('='));
if (p != string::npos)
l.assign (s, p + 3, string::npos);