Skip to content

Commit

Permalink
ffmpeg: remove unsupported linker flag -Bsymbolic for MinGW (#6346)
Browse files Browse the repository at this point in the history
  • Loading branch information
Doekin authored Feb 12, 2025
1 parent c9137d4 commit 24d6a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/f/ffmpeg/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 24d6a2b

Please sign in to comment.