1 Star 0 Fork 58

英勇无比的手术刀/fountain

forked from 阿债/fountain 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.sh 564 Bytes
一键复制 编辑 原始数据 按行查看 历史
阿债 提交于 2018-10-09 18:41 . 增加新主题larecipe
#!/bin/bash
GOARCH=amd64
GOOS=$(uname -s | tr [A-Z] [a-z])
if [ "$GOOS" == "darwin" ]; then
GOBUILD="/usr/local/bin/go build"
UPX=""
else
GOBUILD="/usr/bin/go build"
UPX="/usr/bin/upx"
#UPX="/usr/bin/upx --ultra-brute"
fi
buildPlugin()
{
NAME="$1"
MOMENT=$(date +%FT%TZ)
FLAGS="-s -w -pluginpath=$NAME.so.$MOMENT"
rm -f "$NAME.so"
$GOBUILD -buildmode=plugin -ldflags="$FLAGS" -o "$NAME.so" converter/"$NAME.go"
}
#buildPlugin markdown
rm -f fountain
$GOBUILD -ldflags="-s -w"
if [ -e "$UPX" ]; then
$UPX fountain
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/fxcqehgwtdu/fountain.git
git@gitee.com:fxcqehgwtdu/fountain.git
fxcqehgwtdu
fountain
fountain
master

搜索帮助