aboutsummaryrefslogtreecommitdiff
path: root/build2/bin
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-07-21 10:04:18 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-07-21 10:04:18 +0200
commitd8f26e8402bbe19820545db90394f657ae42e598 (patch)
treea1430c3077de2053ef32013c2eef5e50b840a43a /build2/bin
parentde15b95d09d00821aa23e96a0c3e827689c27a58 (diff)
Save default/hinted ar/ld/rc values as commented out
This way, when we, for example, change the C++ compiler (which hinted these values), they will be automatically adjusted as well.
Diffstat (limited to 'build2/bin')
-rw-r--r--build2/bin/guess7
-rw-r--r--build2/bin/guess.cxx10
-rw-r--r--build2/bin/module.cxx39
3 files changed, 35 insertions, 21 deletions
diff --git a/build2/bin/guess b/build2/bin/guess
index 10f337a..540e644 100644
--- a/build2/bin/guess
+++ b/build2/bin/guess
@@ -39,12 +39,11 @@ namespace build2
string ranlib_checksum;
};
- // The ranlib path can be empty, in which case no ranlib guessing will be
- // attemplated and the returned ranlib_* members will be left empty as
- // well.
+ // The ranlib path can be NULL, in which case no ranlib guessing will be
+ // attemplated and the returned ranlib_* members will be left empty.
//
ar_info
- guess_ar (const path& ar, const path& ranlib);
+ guess_ar (const path& ar, const path* ranlib);
// ld information.
//
diff --git a/build2/bin/guess.cxx b/build2/bin/guess.cxx
index 8a91015..de91db3 100644
--- a/build2/bin/guess.cxx
+++ b/build2/bin/guess.cxx
@@ -23,7 +23,7 @@ namespace build2
};
ar_info
- guess_ar (const path& ar, const path& rl)
+ guess_ar (const path& ar, const path* rl)
{
tracer trace ("bin::guess_ar");
@@ -106,7 +106,7 @@ namespace build2
// Now repeat pretty much the same steps for ranlib if requested.
//
- if (!rl.empty ())
+ if (rl != nullptr)
{
// Binutils, LLVM, and FreeBSD.
//
@@ -133,7 +133,7 @@ namespace build2
};
sha256 cs;
- rlr = run<guess_result> (rl, "--version", f, false, false, &cs);
+ rlr = run<guess_result> (*rl, "--version", f, false, false, &cs);
if (!rlr.empty ())
rlr.checksum = cs.string ();
@@ -153,7 +153,7 @@ namespace build2
// Redirect STDERR to STDOUT and ignore exit status.
//
sha256 cs;
- rlr = run<guess_result> (rl, f, false, true, &cs);
+ rlr = run<guess_result> (*rl, f, false, true, &cs);
if (!rlr.empty ())
{
@@ -163,7 +163,7 @@ namespace build2
}
if (rlr.empty ())
- fail << "unable to guess " << rl << " signature";
+ fail << "unable to guess " << *rl << " signature";
}
return ar_info {
diff --git a/build2/bin/module.cxx b/build2/bin/module.cxx
index 6f9a938..26dc414 100644
--- a/build2/bin/module.cxx
+++ b/build2/bin/module.cxx
@@ -245,7 +245,7 @@ namespace build2
v = l.value;
}
- // For ease of use enter it as bin.pattern (it can come from
+ // For ease of use enter it as bin.pattern (since it can come from
// different places).
//
if (v != nullptr)
@@ -415,20 +415,31 @@ namespace build2
const string& tsys (cast<string> (r["bin.target.system"]));
const char* ar_d (tsys == "win32-msvc" ? "lib" : "ar");
- auto p (config::required (r,
+ // Don't save the default value to config.build so that if the user
+ // changes, say, the C++ compiler (which hinted the pattern), then
+ // ar will automatically change as well.
+ //
+ auto ap (config::required (r,
"config.bin.ar",
- path (apply (pattern, ar_d))));
- auto& v (config::optional (r, "config.bin.ranlib"));
+ path (apply (pattern, ar_d)),
+ false,
+ config::save_commented));
- const path& ar (cast<path> (p.first));
- const path& ranlib (v ? cast<path> (v) : path ());
+ auto rp (config::required (r,
+ "config.bin.ranlib",
+ nullptr,
+ false,
+ config::save_commented));
+
+ const path& ar (cast<path> (ap.first));
+ const path* ranlib (cast_null<path> (rp.first));
ar_info ari (guess_ar (ar, ranlib));
// If this is a new value (e.g., we are configuring), then print the
// report at verbosity level 2 and up (-v).
//
- if (verb >= (p.second ? 2 : 3))
+ if (verb >= (ap.second || rp.second ? 2 : 3))
{
diag_record dr (text);
@@ -438,10 +449,10 @@ namespace build2
<< " signature " << ari.ar_signature << '\n'
<< " checksum " << ari.ar_checksum;
- if (!ranlib.empty ())
+ if (ranlib != nullptr)
{
dr << '\n'
- << " ranlib " << ranlib << '\n'
+ << " ranlib " << *ranlib << '\n'
<< " id " << ari.ranlib_id << '\n'
<< " signature " << ari.ranlib_signature << '\n'
<< " checksum " << ari.ranlib_checksum;
@@ -452,7 +463,7 @@ namespace build2
r.assign<string> ("bin.ar.signature") = move (ari.ar_signature);
r.assign<string> ("bin.ar.checksum") = move (ari.ar_checksum);
- if (!ranlib.empty ())
+ if (ranlib != nullptr)
{
r.assign<string> ("bin.ranlib.id") = move (ari.ranlib_id);
r.assign<string> ("bin.ranlib.signature") =
@@ -504,7 +515,9 @@ namespace build2
auto p (config::required (r,
"config.bin.ld",
- path (apply (r["bin.pattern"], ld_d))));
+ path (apply (r["bin.pattern"], ld_d)),
+ false,
+ config::save_commented));
const path& ld (cast<path> (p.first));
ld_info ldi (guess_ld (ld));
@@ -581,7 +594,9 @@ namespace build2
auto p (config::required (r,
"config.bin.rc",
- path (apply (r["bin.pattern"], rc_d))));
+ path (apply (r["bin.pattern"], rc_d)),
+ false,
+ config::save_commented));
const path& rc (cast<path> (p.first));
rc_info rci (guess_rc (rc));