1 Star 0 Fork 13

shilongzhen/systemd_1

forked from openKylin/systemd 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
configure 434 Bytes
一键复制 编辑 原始数据 按行查看 历史
niubix 提交于 2024-03-06 10:07 . Import 255.2-ok1
#!/usr/bin/env bash
# SPDX-License-Identifier: LGPL-2.1-or-later
set -e
cflags="CFLAGS=${CFLAGS-}"
cxxflags="CXXFLAGS=${CXXFLAGS-}"
args=()
for arg in "$@"; do
case "$arg" in
CFLAGS=*)
cflags="$arg"
;;
CXXFLAGS=*)
cxxflags="$arg"
;;
*)
args+=("$arg")
esac
done
export "${cflags?}" "${cxxflags?}"
set -x
exec meson setup build "${args[@]}"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/shilongzhen/systemd_1.git
git@gitee.com:shilongzhen/systemd_1.git
shilongzhen
systemd_1
systemd_1
openkylin/nile

搜索帮助