diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-07-26 07:52:35 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-07-26 07:52:35 +0200 |
commit | 79763cb5b4b7cfa67fa0251e03bb4bc7c9bf00b6 (patch) | |
tree | 4fd3fabb5142dbd0f0980b116461b6948381d287 | |
parent | 7be0fd244d88a3561c8d5ca5ba90a3aa5a2ef2bc (diff) |
Disable risky sanity check
-rw-r--r-- | libbuild2/cc/link-rule.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libbuild2/cc/link-rule.cxx b/libbuild2/cc/link-rule.cxx index 3d899e8..8794c25 100644 --- a/libbuild2/cc/link-rule.cxx +++ b/libbuild2/cc/link-rule.cxx @@ -839,7 +839,9 @@ namespace build2 // @@ Isn't libul{} member already picked or am I missing something? // If not, then we may need the same in recursive-binless logic. // - assert (false); // @@ TMP +#if 0 + assert (false); // @@ TMP (remove before 0.16.0 release) +#endif ux = &link_member (*ul, a, li)->as<libux> (); } else if ((ux = pt->is_a<libue> ()) || |