Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
These can be loaded before {c,cxx} to guess the compiler. Based on this
information we can then choose the standard, experimental features, etc.
For example:
using cxx.guess
if ($cxx.id == 'clang')
cxx.features.modules = false
cxx.std = experimental
using cxx
|
|
|
|
|
|
This fixes a bug with no updating manifest versions in build2-toolchain
subprojects.
|
|
|
|
|
|
|
|
Specifically, we no longer support specifying the out_base explicitly and
assuming work is src_base.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Now the clean operation in src_root should result in state identical to
distributed (which appears to be important to some packaging systems, e.g.,
Debian).
|
|
|
|
|
|
|
|
|
|
|
|
|