From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- taskcluster/scripts/misc/build-afl.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 taskcluster/scripts/misc/build-afl.sh (limited to 'taskcluster/scripts/misc/build-afl.sh') diff --git a/taskcluster/scripts/misc/build-afl.sh b/taskcluster/scripts/misc/build-afl.sh new file mode 100755 index 0000000000..5039a7a7b1 --- /dev/null +++ b/taskcluster/scripts/misc/build-afl.sh @@ -0,0 +1,24 @@ +#!/bin/sh + +set -e -x + +artifact="$(basename "$TOOLCHAIN_ARTIFACT")" +dir="${artifact%.tar.*}" +scripts="$(realpath "${0%/*}")" + +cd "$MOZ_FETCHES_DIR/AFLplusplus" +patch -p1 -i "$scripts/afl-nyx.patch" +make -f GNUmakefile afl-showmap \ + CC="$MOZ_FETCHES_DIR/clang/bin/clang" +make -f GNUmakefile.llvm install \ + CODE_COVERAGE=1 \ + CPPFLAGS="--sysroot $MOZ_FETCHES_DIR/sysroot" \ + DESTDIR="$dir" \ + LLVM_CONFIG="$MOZ_FETCHES_DIR/clang/bin/llvm-config" \ + PREFIX=/ +rm -rf "$dir/share" + +tar caf "$artifact" "$dir" + +mkdir -p "$UPLOAD_DIR" +mv "$artifact" "$UPLOAD_DIR" -- cgit v1.2.3