Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Fix :option:`--enable-bolt` build by switching the default BOLT flag from
``-icf=1`` to ``-icf=0``. ``-icf=1`` folds address-taken functions and
breaks type-slot dispatch, crashing on :mod:`list` and :mod:`tuple`
concatenation. Patched by Shamil Abdulaev.
2 changes: 1 addition & 1 deletion configure

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2255,7 +2255,7 @@ then
-reorder-blocks=ext-tsp
-reorder-functions=cdsort
-split-functions
-icf=1
-icf=0
-inline-all
-split-eh
-reorder-functions-use-hot-size
Expand Down
Loading