<div dir="ltr">Thanks, I'll check it out. <br><div><br></div><div>I'd like other people to adopt build2 in the future. This is a fantastic tool.</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Mar 11, 2019 at 10:53 AM Boris Kolpackov <<a href="mailto:boris@codesynthesis.com">boris@codesynthesis.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Luiz Fernando Afra Brito <<a href="mailto:luizfernandoafrabrito@gmail.com" target="_blank">luizfernandoafrabrito@gmail.com</a>> writes:<br>
<br>
>     cxx.poptions += -DL1_SIZE=`/bin/getconf LEVEL1_DCACHE_SIZE`<br>
> <br>
> Can I get the result of external commands inside a buildfile?<br>
<br>
There is a family of $process.run*() functions for that. Quoting from<br>
build2/functions-process.cxx (proper documentation is coming soon):<br>
<br>
<br>
// $process.run(<prog>[ <args>...])<br>
//<br>
// Return trimmed stdout.<br>
<br>
<br>
// $process.run_regex(<prog>[ <args>...], <pat> [, <fmt>])<br>
//<br>
// Return stdout lines matched and optionally processed with regex.<br>
//<br>
// Each line of stdout (including the customary trailing blank) is matched<br>
// (as a whole) against <pat> and, if successful, returned, optionally<br>
// processed with <fmt>, as an element of a list.<br>
<br>
<br>
So you should be able to do something like this:<br>
<br>
  cxx.poptions += "-DL1_SIZE=$process.run(/bin/getconf LEVEL1_DCACHE_SIZE)"<br>
<br>
For completeness, let me also mention the run directive which you can<br>
use to source output of a program as a buildfile fragment:<br>
<br>
run echo 'foo = bar'<br>
print $foo           # Prints 'bar'.<br>
</blockquote></div>