diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-06-18 08:53:59 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-06-18 08:53:59 +0200 |
commit | 832c50a8f3c3ac71313e2c54ffeca3aab460e63d (patch) | |
tree | 777cb01a8a939a289d55dc332e8683dc076799d3 /libbuild2/parser.cxx | |
parent | 50e725ae23124a10d56a615fb8b0ae80d0d2b4d3 (diff) |
Delay checking for ad hoc C++ recipe support until match
Diffstat (limited to 'libbuild2/parser.cxx')
-rw-r--r-- | libbuild2/parser.cxx | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/libbuild2/parser.cxx b/libbuild2/parser.cxx index 6d34a11..21b5794 100644 --- a/libbuild2/parser.cxx +++ b/libbuild2/parser.cxx @@ -1143,14 +1143,7 @@ namespace build2 { // C++ // -#if defined(BUILD2_BOOTSTRAP) || defined(LIBBUILD2_STATIC_BUILD) - fail (loc) << "ad hoc c++ recipe" << -#ifdef BUILD2_BOOTSTRAP - info << "running bootstrap build system"; -#else - info << "running statically-linked build system"; -#endif -#else + // Parse recipe version and optional fragment separator. // if (tt == type::newline || tt == type::eos) @@ -1195,7 +1188,6 @@ namespace build2 ar.reset ( new adhoc_cxx_rule (loc, st.value.size (), ver, move (sep))); -#endif // BUILD2_BOOTSTRAP || LIBBUILD2_STATIC_BUILD } else fail (lloc) << "unknown recipe language '" << *lang << "'"; |