x264: add v2024.02.27 version (#5356)

* x264: add v2024.02.27 version

* fix android bsd

* fix android patch

* try to fix mingw & cross

* limit plat

* fix mingw

* disable asm for cross mingw
pull/5359/head
star9029 2 months ago committed by GitHub
parent 52b9b94ebb
commit 4e98d47e88
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 86
      packages/x/x264/xmake.lua

@ -1,15 +1,16 @@
package("x264") package("x264")
set_homepage("https://www.videolan.org/developers/x264.html") set_homepage("https://www.videolan.org/developers/x264.html")
set_description("A free software library and application for encoding video streams into the H.264/MPEG-4 AVC compression format.") set_description("A free software library and application for encoding video streams into the H.264/MPEG-4 AVC compression format.")
set_license("GPL-2.0")
add_urls("https://code.videolan.org/videolan/x264.git", add_urls("https://code.videolan.org/videolan/x264.git",
"https://github.com/mirror/x264.git") "https://github.com/mirror/x264.git")
add_versions("v2024.02.27", "c24e06c2e184345ceb33eb20a15d1024d9fd3497")
add_versions("v2023.04.04", "eaa68fad9e5d201d42fde51665f2d137ae96baf0") add_versions("v2023.04.04", "eaa68fad9e5d201d42fde51665f2d137ae96baf0")
add_versions("v2021.09.29", "66a5bc1bd1563d8227d5d18440b525a09bcf17ca") add_versions("v2021.09.29", "66a5bc1bd1563d8227d5d18440b525a09bcf17ca")
add_versions("v2018.09.25", "545de2ffec6ae9a80738de1b2c8cf820249a2530") add_versions("v2018.09.25", "545de2ffec6ae9a80738de1b2c8cf820249a2530")
add_deps("nasm")
add_configs("cli", {description = "enable cli", default = false, type = "boolean"}) add_configs("cli", {description = "enable cli", default = false, type = "boolean"})
add_configs("bashcompletion", {description = "enable installation of bash-completion script", default = false, type = "boolean"}) add_configs("bashcompletion", {description = "enable installation of bash-completion script", default = false, type = "boolean"})
add_configs("opencl", {description = "enable OpenCL features", default = true, type = "boolean"}) add_configs("opencl", {description = "enable OpenCL features", default = true, type = "boolean"})
@ -21,8 +22,6 @@ package("x264")
-- Advanced options -- Advanced options
add_configs("asm", {description = "enable platform-specific assembly optimizations", default = true, type = "boolean"}) add_configs("asm", {description = "enable platform-specific assembly optimizations", default = true, type = "boolean"})
add_configs("lto", {description = "enable link-time optimization", default = false, type = "boolean"})
add_configs("pic", {description = "build position-independent code", default = false, type = "boolean"})
-- External library support -- External library support
add_configs("avs", {description = "enable avisynth support", default = false, type = "boolean"}) add_configs("avs", {description = "enable avisynth support", default = false, type = "boolean"})
@ -34,30 +33,68 @@ package("x264")
add_configs("toolchains", {readonly = true, description = "Set package toolchains only for cross-compilation."}) add_configs("toolchains", {readonly = true, description = "Set package toolchains only for cross-compilation."})
if is_plat("linux", "macosx") then
add_syslinks("pthread", "dl")
end
if is_plat("wasm") then if is_plat("wasm") then
add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true}) add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true})
end end
on_load("windows", "mingw", function (package) if is_plat("linux", "macosx", "bsd") then
add_syslinks("pthread", "dl")
end
add_deps("nasm")
on_load(function (package)
if is_subhost("windows") and os.arch() == "x64" then if is_subhost("windows") and os.arch() == "x64" then
package:add("deps", "msys2", {configs = {msystem = "MINGW64", base_devel = true}}) local msystem = "MINGW" .. (package:is_targetarch("i386", "x86", "i686") and "32" or "64")
package:add("deps", "msys2", {configs = {msystem = msystem, base_devel = true}})
end
if package:config("shared") then
package:add("defines", "X264_API_IMPORTS")
end end
end) end)
on_install("windows", "mingw", "linux", "macosx", "wasm", function (package) on_install("!iphoneos and !bsd", function (package)
if is_host("windows") then
io.replace("Makefile",
"ln -f -s $(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX)",
"mv $(SONAME) libx264.$(SOSUFFIX)", {plain = true})
io.replace("Makefile",
"$(INSTALL) -m 755 $(SONAME) $(DESTDIR)$(libdir)",
"$(INSTALL) -m 755 libx264.$(SOSUFFIX) $(DESTDIR)$(libdir)", {plain = true})
end
if package:is_plat("android") and package:is_arch("armeabi-v7a") then
local ndk_sdkver = package:toolchain("ndk"):config("ndk_sdkver")
if ndk_sdkver and tonumber(ndk_sdkver) < 24 then
io.replace("configure", "define fseek fseek", "", {plain = true})
io.replace("configure", "define ftell ftell", "", {plain = true})
end
end
local configs = {} local configs = {}
table.insert(configs, "--enable-" .. (package:config("shared") and "shared" or "static")) table.insert(configs, "--enable-" .. (package:config("shared") and "shared" or "static"))
if package:is_plat("mingw") then table.insert(configs, "--" .. (package:is_debug() and "enable" or "disable") .. "-debug")
-- todo: fix a way to make it work table.insert(configs, "--" .. (package:config("lto") and "enable" or "disable") .. "-lto")
package:config_set("asm", false) table.insert(configs, "--" .. (package:config("pic") and "enable" or "disable") .. "-pic")
elseif package:is_plat("wasm") then
if package:is_plat("wasm") then
table.insert(configs, "--host=i686-gnu") table.insert(configs, "--host=i686-gnu")
package:config_set("asm", false) package:config_set("asm", false)
package:config_set("cli", false) package:config_set("cli", false)
elseif package:is_plat("android") then
local ndk_bindir = package:toolchain("ndk"):config("bindir")
ndk_bindir = path.unix(assert(ndk_bindir)) .. "/llvm-"
table.insert(configs, "--cross-prefix=" .. ndk_bindir)
elseif package:is_plat("mingw") then
local triples = {
i386 = "i686-w64-mingw32",
x86_64 = "x86_64-w64-mingw32"
}
table.insert(configs, "--host=" .. (triples[package:arch()] or triples.i386))
if not is_host("windows") then
package:config_set("asm", false)
end
end end
for name, value in pairs(package:configs()) do for name, value in pairs(package:configs()) do
@ -69,29 +106,26 @@ package("x264")
end end
end end
end end
local opt = {}
if package:is_plat("windows") then if package:is_plat("windows") then
import("core.base.option") import("core.base.option")
import("core.tool.toolchain") import("core.tool.toolchain")
local msvc = package:toolchain("msvc") or toolchain.load("msvc", {plat = package:plat(), arch = package:arch()}) local msvc = package:toolchain("msvc") or toolchain.load("msvc", {plat = package:plat(), arch = package:arch()})
assert(msvc:check(), "msvs not found!") assert(msvc:check(), "msvs not found!")
io.replace("configure", "x264.dll.lib", "x264.lib", {plain = true})
-- keep msys2 envs in front to prevent conflict with possibly installed sh.exe -- keep msys2 envs in front to prevent conflict with possibly installed sh.exe
local envs = os.joinenvs(os.getenvs(), msvc:runenvs()) local envs = os.joinenvs(os.getenvs(), msvc:runenvs())
envs.CC = path.filename(package:build_getenv("cc")) envs.CC = path.filename(package:build_getenv("cc"))
envs.SHELL = "sh" envs.SHELL = "sh"
table.insert(configs, "--toolchain=msvc") table.insert(configs, "--toolchain=msvc")
table.insert(configs, "--prefix=" .. package:installdir():gsub("\\", "/")) table.insert(configs, "--prefix=" .. path.unix(package:installdir()))
os.vrunv("./configure", configs, {shell = true, envs = envs}) opt.envs = envs
local njob = option.get("jobs") or tostring(os.default_njob())
local argv = {"-j" .. njob}
if option.get("verbose") then
table.insert(argv, "V=1")
end
os.vrunv("make", argv, {envs = envs})
os.vrunv("make", {"install"}, {envs = envs})
else
import("package.tools.autoconf").install(package, configs)
end end
import("package.tools.autoconf").install(package, configs, opt)
end) end)
on_test(function (package) on_test(function (package)

Loading…
Cancel
Save