From: Denis Ovsienko Date: Tue, 7 Dec 2021 21:07:41 +0000 (+0000) Subject: Remove an unused script. [skip ci] X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/645560757b2a44e202c47942a9a20f0b96066e31 Remove an unused script. [skip ci] There is a different solution in place, which is a superset of this. --- diff --git a/buildem b/buildem deleted file mode 100755 index 2408953c..00000000 --- a/buildem +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -# this script builds libpcap and tcpdump using the matrix of compilers and architectures -# that travis also buildsd. - -if [ -f Makefile.in ]; then cd ..; fi -here=`pwd` -mkdir -p builds -cd builds - -export CFLAGS='-fno-omit-frame-pointer -fsanitize=address -fno-optimize-sibling-calls -fPIC -Wextra -g3 -ggdb3 -O0 -Werror' -for arch in i386 x86_64 -do - case $arch in - i386) CFLAGS="-m32 $CFLAGS"; export LDFLAGS="-m32"; export CXXFLAGS=-m32; target="i686-pc-linux-gnu" ;; - esac - ( - for compiler in clang-6.0 gcc - do - mkdir -p $arch/$compiler - set -x - (cd $arch/$compiler && mkdir -p libpcap tcpdump && - (cd libpcap && CC=$compiler $here/libpcap/configure --target=$target && make ) && - (cd tcpdump && CC=$compiler $here/tcpdump/configure --target=$target && make && make check)) - done - ) -done -