--!A cross-platform build utility based on Lua -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- -- Copyright (C) 2015-present, Xmake Open Source Community. -- -- @author ruki -- @file install.lua -- -- imports import("core.base.option") -- get menu options function menu_options() -- description local description = "Install the given packages." -- menu options local options = { {'k', "kind", "kv", nil, "Enable static/shared library.", values = {"static", "shared"} }, {'p', "plat", "kv", nil, "Set the given platform." }, {'a', "arch", "kv", nil, "Set the given architecture." }, {'m', "mode", "kv", nil, "Set the given mode.", values = {"release", "debug"} }, {'f', "configs", "kv", nil, "Set the given extra package configs.", "e.g.", " - xrepo install -f \"runtimes='MD'\" zlib", " - xrepo install -f \"regex=true,thread=true\" boost"}, {'j', "jobs", "kv", tostring(os.default_njob()), "Set the number of parallel compilation jobs."}, {nil, "linkjobs", "kv", nil, "Set the number of parallel link jobs."}, {nil, "includes", "kv", nil, "Includes extra lua configuration files.", "e.g.", " - xrepo install -p cross --toolchain=mytool --includes='toolchain1.lua" .. path.envsep() .. "toolchain2.lua'"}, {nil, "policies", "kv", nil, "Set the policies." }, {category = "Visual Studio SDK Configuration" }, {nil, "vs", "kv", nil, "The Microsoft Visual Studio" , " e.g. --vs=2017" }, {nil, "vs_toolset", "kv", nil, "The Microsoft Visual Studio Toolset Version" , " e.g. --vs_toolset=14.0" }, {nil, "vs_sdkver", "kv", nil, "The Windows SDK Version of Visual Studio" , " e.g. --vs_sdkver=10.0.15063.0" }, {category = "Android NDK Configuration" }, {nil, "ndk", "kv", nil, "The NDK directory" }, {nil, "ndk_sdkver", "kv", nil, "The SDK Version for NDK (default: auto)" }, {nil, "android_sdk", "kv", nil, "The Android SDK Directory" }, {nil, "build_toolver", "kv", nil, "The Build Tool Version of Android SDK" }, {nil, "ndk_stdcxx", "kv", nil, "Use stdc++ library for NDK" }, {nil, "ndk_cxxstl", "kv", nil, "The stdc++ stl library for NDK", " - c++_static", " - c++_shared", " - gnustl_static", " - gnustl_shared", " - stlport_shared", " - stlport_static" }, {category = "Cross Compilation Configuration" }, {nil, "sdk", "kv", nil, "Set the SDK directory of cross toolchain." }, {nil, "toolchain", "kv", nil, "Set the toolchain name." }, {nil, "toolchain_host","kv", nil, "Set the host toolchain name." }, {category = "MingW Configuration" }, {nil, "mingw", "kv", nil, "Set the MingW SDK directory." }, {category = "XCode SDK Configuration" }, {nil, "xcode", "kv", nil, "The Xcode Application Directory" }, {nil, "xcode_sdkver", "kv", nil, "The SDK Version for Xcode" }, {nil, "target_minver", "kv", nil, "The Target Minimal Version" }, {nil, "appledev", "kv", nil, "The Apple Device Type", values = {"simulator", "iphone", "watchtv", "appletv", "catalyst"}}, {category = "Debug Configuration" }, {'d', "debugdir", "kv", nil, "The source directory of the current package for debugging. It will enable --force/--shallow by default."}, {category = "Other Configuration" }, {nil, "force", "k", nil, "Force to reinstall all package dependencies."}, {nil, "shallow", "k", nil, "Does not install dependent packages."}, {nil, "build", "k", nil, "Always build and install packages from source."}, {}, {nil, "packages", "vs", nil, "The packages list.", "e.g.", " - xrepo install zlib boost", " - xrepo install /tmp/zlib.lua", " - xrepo install -p iphoneos -a arm64 \"zlib >=1.2.0\"", " - xrepo install -p android [--ndk=/xxx] -m debug \"pcre2 10.x\"", " - xrepo install -p mingw [--mingw=/xxx] -k shared zlib", " - xrepo install conan::zlib/1.2.11 vcpkg::zlib", values = function (complete, opt) return import("private.xrepo.quick_search.completion")(complete, opt) end} } -- show menu options local function show_options() -- show usage cprint("${bright}Usage: $${clear cyan}xrepo install [options] packages") -- show description print("") print(description) -- show options option.show_options(options, "install") end return options, show_options, description end -- install packages function _install_packages(packages) -- is package configuration file? e.g. xrepo install xxx.lua -- -- xxx.lua -- add_requires("libpng", {system = false}) -- add_requireconfs("libpng.*", {configs = {shared = true}}) local packagefile if type(packages) == "string" or #packages == 1 then local filepath = table.unwrap(packages) if type(filepath) == "string" and filepath:endswith(".lua") and os.isfile(filepath) then packagefile = path.absolute(filepath) end end -- add includes to rcfiles local rcfiles = {} local includes = option.get("includes") if includes then for _, includefile in ipairs(path.splitenv(includes)) do table.insert(rcfiles, path.absolute(includefile)) end end -- enter working project directory local subdir = "working" if packagefile then subdir = subdir .. "-" .. hash.uuid(packagefile):split('-')[1] end local origindir = os.curdir() local workdir = path.join(os.tmpdir(), "xrepo", subdir) if not os.isdir(workdir) then os.mkdir(workdir) os.cd(workdir) os.vrunv(os.programfile(), {"create", "-P", "."}) else os.cd(workdir) end if packagefile then assert(os.isfile("xmake.lua"), "xmake.lua not found!") io.writefile("xmake.lua", ('includes("%s")\ntarget("test", {kind = "phony"})'):format((packagefile:gsub("\\", "/")))) end -- disable xmake-stats os.setenv("XMAKE_STATS", "false") -- do configure first local config_argv = {"f", "-c", "--require=n"} if option.get("diagnosis") then table.insert(config_argv, "-vD") end if option.get("plat") then table.insert(config_argv, "-p") table.insert(config_argv, option.get("plat")) end if option.get("arch") then table.insert(config_argv, "-a") table.insert(config_argv, option.get("arch")) end local mode = option.get("mode") if mode then table.insert(config_argv, "-m") table.insert(config_argv, mode) end local kind = option.get("kind") if kind then table.insert(config_argv, "-k") table.insert(config_argv, kind) end local policies = option.get("policies") if policies then table.insert(config_argv, "--policies=" .. policies) end -- for android if option.get("ndk") then table.insert(config_argv, "--ndk=" .. option.get("ndk")) end if option.get("ndk_sdkver") then table.insert(config_argv, "--ndk_sdkver=" .. option.get("ndk_sdkver")) end if option.get("android_sdk") then table.insert(config_argv, "--android_sdk=" .. option.get("android_sdk")) end if option.get("build_toolver") then table.insert(config_argv, "--build_toolver=" .. option.get("build_toolver")) end if option.get("ndk_stdcxx") then table.insert(config_argv, "--ndk_stdcxx=" .. option.get("ndk_stdcxx")) end if option.get("ndk_cxxstl") then table.insert(config_argv, "--ndk_cxxstl=" .. option.get("ndk_cxxstl")) end -- for cross toolchain if option.get("sdk") then table.insert(config_argv, "--sdk=" .. option.get("sdk")) end if option.get("toolchain") then table.insert(config_argv, "--toolchain=" .. option.get("toolchain")) end if option.get("toolchain_host") then table.insert(config_argv, "--toolchain_host=" .. option.get("toolchain_host")) end -- for mingw if option.get("mingw") then table.insert(config_argv, "--mingw=" .. option.get("mingw")) end -- for vs if option.get("vs") then table.insert(config_argv, "--vs=" .. option.get("vs")) end if option.get("vs_toolset") then table.insert(config_argv, "--vs_toolset=" .. option.get("vs_toolset")) end if option.get("vs_sdkver") then table.insert(config_argv, "--vs_sdkver=" .. option.get("vs_sdkver")) end -- for xcode if option.get("xcode") then table.insert(config_argv, "--xcode=" .. option.get("xcode")) end if option.get("xcode_sdkver") then table.insert(config_argv, "--xcode_sdkver=" .. option.get("xcode_sdkver")) end if option.get("target_minver") then table.insert(config_argv, "--target_minver=" .. option.get("target_minver")) end if option.get("appledev") then table.insert(config_argv, "--appledev=" .. option.get("appledev")) end local envs = {} if #rcfiles > 0 then envs.XMAKE_RCFILES = path.joinenv(rcfiles) end os.vrunv(os.programfile(), config_argv, {envs = envs}) -- do install local require_argv = {"require"} if option.get("yes") then table.insert(require_argv, "-y") end if option.get("verbose") then table.insert(require_argv, "-v") end if option.get("diagnosis") then table.insert(require_argv, "-D") end if option.get("jobs") then table.insert(require_argv, "-j") table.insert(require_argv, option.get("jobs")) end if option.get("linkjobs") then table.insert(require_argv, "--linkjobs=" .. option.get("linkjobs")) end local is_debug = false local sourcedir = option.get("debugdir") if sourcedir then is_debug = true table.insert(require_argv, "--debugdir=" .. path.absolute(sourcedir, origindir)) end if option.get("force") or is_debug then table.insert(require_argv, "--force") end if option.get("shallow") or is_debug then table.insert(require_argv, "--shallow") end if option.get("build") or is_debug then table.insert(require_argv, "--build") end local extra = {system = false} if mode == "debug" then extra.debug = true end if kind then extra.configs = extra.configs or {} extra.configs.shared = kind == "shared" end local configs = option.get("configs") if configs then extra.system = false extra.configs = extra.configs or {} local extra_configs, errors = ("{" .. configs .. "}"):deserialize() if extra_configs then table.join2(extra.configs, extra_configs) else raise(errors) end end if not packagefile then -- avoid overriding extra configs in add_requires/xmake.lua if extra then local extra_str = string.serialize(extra, {indent = false, strip = true}) table.insert(require_argv, "--extra=" .. extra_str) end table.join2(require_argv, packages) end os.vexecv(os.programfile(), require_argv, {envs = envs}) end -- main entry function main() local packages = option.get("packages") if packages then _install_packages(packages) else raise("please specify the packages to be installed.") end end