summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/build.sh b/build.sh
deleted file mode 100755
index cb26319..0000000
--- a/build.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-
-set -xeuf -o pipefail
-
-declare -r LIBBPFGO="$(pwd)/../libbpfgo"
-
-bpftool btf dump file /sys/kernel/btf/vmlinux format c > vmlinux.h
-echo 'package main' > internal/opids.go
-echo >> internal/opids.go
-sed -E 's/#define (.*) ([0-9]+)/const \1 = \2/' opids.h >> internal/opids.go
-
-clang -g -O2 -Wall -fpie -I../libbpfgo/selftest/common -target bpf -D__TARGET_ARCH_amd64 -I../libbpfgo/output -I../libbpfgo/selftest/common -c ioriotng.bpf.c -o ioriotng.bpf.o
-
-export CC=clang
-export CGO_CFLAGS="-I$LIBBPFGO/output -I$LIBBPFGO/selftest/common"
-export CGO_LDFLAGS="-lelf -lzstd $LIBBPFGO/output/libbpf.a"
-export GOOS=linux
-export GOARCH=amd64
-
-go build -race -tags netgo -ldflags '-w -extldflags "-static"' -o ioriotng ./cmd/ioriotng/main.go