File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ function generate_compiler_wrappers!(platform::AbstractPlatform; bin_path::Abstr
219
219
if lock_microarchitecture
220
220
write (io, raw """
221
221
if [[ " ${ARGS[@]} " == *"-march="* ]]; then
222
- echo "BinaryBuilder: Cannot force an architecture" >&2
222
+ echo "BinaryBuilder: Cannot force an architecture via -march " >&2
223
223
exit 1
224
224
fi
225
225
""" )
@@ -229,7 +229,7 @@ function generate_compiler_wrappers!(platform::AbstractPlatform; bin_path::Abstr
229
229
if no_soft_float
230
230
write (io, raw """
231
231
if [[ " ${ARGS[@]} " == *"-mfloat-abi=soft"* ]]; then
232
- echo "BinaryBuilder: ${target} platform does not support soft-float ABI" >&2
232
+ echo "BinaryBuilder: ${target} platform does not support soft-float ABI (-mfloat-abi=soft) " >&2
233
233
exit 1
234
234
fi
235
235
""" )
Original file line number Diff line number Diff line change 270
270
iobuff = IOBuffer ()
271
271
@test ! run (ur, cmd, iobuff; tee_stream= devnull )
272
272
seekstart (iobuff)
273
- @test readlines (iobuff)[2 ] == " BinaryBuilder: Cannot force an architecture"
273
+ @test readlines (iobuff)[2 ] == " BinaryBuilder: Cannot force an architecture via -march "
274
274
275
275
ur = preferred_runner ()(dir; platform= platform, lock_microarchitecture= false )
276
276
iobuff = IOBuffer ()
You can’t perform that action at this time.
0 commit comments