ffmpeg: remove unsupported linker flag `-Bsymbolic` for MinGW (#6346)

pull/6347/head
Doekin 3 months ago committed by GitHub
parent c9137d4368
commit 24d6a2b044
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      packages/f/ffmpeg/xmake.lua

@ -109,7 +109,7 @@ package("ffmpeg")
end
end
-- https://www.ffmpeg.org/platform.html#toc-Advanced-linking-configuration
if package:config("pic") ~= false and not package:is_plat("windows", "macosx", "iphoneos") then
if package:config("pic") ~= false and package:is_plat("linux", "android") then
package:add("shflags", "-Wl,-Bsymbolic")
package:add("ldflags", "-Wl,-Bsymbolic")
end

Loading…
Cancel
Save