Ai
1 Star 0 Fork 2

BuildOpenSource/busybox

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
httpd_helpers.sh 847 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
PREFIX="i486-linux-uclibc-"
OPTS="-static -static-libgcc \
-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 \
-Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Werror \
-Wold-style-definition -Wdeclaration-after-statement -Wno-pointer-sign \
-Wmissing-prototypes -Wmissing-declarations \
-Os -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer \
-ffunction-sections -fdata-sections -fno-guess-branch-probability \
-funsigned-char \
-falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 \
-march=i386 -mpreferred-stack-boundary=2 \
-Wl,--warn-common -Wl,--sort-common -Wl,--gc-sections"
${PREFIX}gcc \
${OPTS} \
-Wl,-Map -Wl,index.cgi.map \
httpd_indexcgi.c -o index.cgi && strip index.cgi
${PREFIX}gcc \
${OPTS} \
-Wl,-Map -Wl,httpd_ssi.map \
httpd_ssi.c -o httpd_ssi && strip httpd_ssi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/build-open-source/busybox.git
git@gitee.com:build-open-source/busybox.git
build-open-source
busybox
busybox
master

搜索帮助