码迷,mamicode.com
首页 > 其他好文 > 详细

如何静态编译tcpdump?

时间:2019-12-06 18:57:35      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:dir   without   mirrors   flags   repo   tcpdump   osi   org   dev   

使用docker编译

FROM alpine:3.9.2
RUN sed -i "s|http://dl-cdn.alpinelinux.org|https://mirrors.aliyun.com|g" /etc/apk/repositories     && apk add gcc g++ make automake libpcap-dev
#ADD tcpdump-4.9.2.tar.gz /opt
WORKDIR /opt
RUN wget http://www.tcpdump.org/release/tcpdump-4.9.2.tar.gz     && tar -xvf tcpdump-4.9.2.tar.gz
RUN cd tcpdump-4.9.2 && CFLAGS=-static ./configure --without-crypto && make
RUN mv tcpdump-4.9.2/tcpdump /static-tcpdump         && rm -rf tcpdump-4.9.2 tcpdump-4.9.2.tar.gz

如何静态编译tcpdump?

标签:dir   without   mirrors   flags   repo   tcpdump   osi   org   dev   

原文地址:https://www.cnblogs.com/futuretea/p/11996824.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!