Skip to content

Commit c437851

Browse files
authored
gh-101282: Enclose BOLT_APPLY_FLAGS value in double quotes (gh-104752)
1 parent c8cf9b4 commit c437851

File tree

2 files changed

+18
-19
lines changed

2 files changed

+18
-19
lines changed

configure

+1-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

configure.ac

+17-17
Original file line numberDiff line numberDiff line change
@@ -2087,23 +2087,23 @@ if test -z "${BOLT_APPLY_FLAGS}"
20872087
then
20882088
AS_VAR_SET(
20892089
[BOLT_APPLY_FLAGS],
2090-
[m4_join([ ],
2091-
[-update-debug-sections],
2092-
[-reorder-blocks=ext-tsp],
2093-
[-reorder-functions=hfsort+],
2094-
[-split-functions],
2095-
[-icf=1],
2096-
[-inline-all],
2097-
[-split-eh],
2098-
[-reorder-functions-use-hot-size],
2099-
[-peepholes=none],
2100-
[-jump-tables=aggressive],
2101-
[-inline-ap],
2102-
[-indirect-call-promotion=all],
2103-
[-dyno-stats],
2104-
[-use-gnu-stack],
2105-
[-frame-opt=hot]
2106-
)]
2090+
[m4_normalize("
2091+
-update-debug-sections
2092+
-reorder-blocks=ext-tsp
2093+
-reorder-functions=hfsort+
2094+
-split-functions
2095+
-icf=1
2096+
-inline-all
2097+
-split-eh
2098+
-reorder-functions-use-hot-size
2099+
-peepholes=none
2100+
-jump-tables=aggressive
2101+
-inline-ap
2102+
-indirect-call-promotion=all
2103+
-dyno-stats
2104+
-use-gnu-stack
2105+
-frame-opt=hot
2106+
")]
21072107
)
21082108
fi
21092109
AC_MSG_RESULT([$BOLT_APPLY_FLAGS])

0 commit comments

Comments
 (0)