Fix compilation in c++1z#34
Merged
olk merged 1 commit intoboostorg:developfrom Oct 2, 2016
blastrock:develop
Merged
Conversation
invoke() could resolve to both boost::context::detail::invoke and std::invoke because of ADL, which would result in an ambiguous call error
Member
|
thx - I'll add defect macro for boost.config regrading to std::invoke() soon |
zaydr-al
pushed a commit
to zaydr-al/context
that referenced
this pull request
Aug 15, 2025
…LF/GAS) The AArch64 fcontext trampolines (jump_fcontext, make_fcontext, ontop_fcontext) are indirect-entry-points. On BTI-enforcing systems they must begin with a BTI or the first resume can trap with SIGILL. Insert `bti c` (hint boostorg#34) at each entry under `__ARM_FEATURE_BTI_DEFAULT`, and emit `GNU_PROPERTY_AARCH64_FEATURE_1_BTI` from each AArch64 assembly file so linkers map the DSO with PROT_BTI without requiring -z force-bti. Scope: ELF/GAS AArch64 trampolines only; +4 bytes per entry Fixes boostorg#308
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
invoke() could resolve to both boost::context::detail::invoke and std::invoke
because of ADL, which would result in an ambiguous call error
This patch was tested on debian unstable, with gcc 6.2 and clang 3.9. Also, I didn't test the patch in this repository but directly on boost 1.61, but it should be safe enough.