diff options
author | van Hauser <vh@thc.org> | 2021-05-03 11:22:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-03 11:22:18 +0200 |
commit | 26f1607766a00bfe79f8f20e7591071fa1fb6a84 (patch) | |
tree | 94d206d7ac75a8a61ff285f155bbc7e96607cc9d | |
parent | 6119c2eb5f4349c93abbeb19f0f9ec2f41aaabd1 (diff) | |
download | afl++-26f1607766a00bfe79f8f20e7591071fa1fb6a84.tar.gz |
reverse push (#901)
* Create FUNDING.yml * Update FUNDING.yml * disable QEMU static pie Co-authored-by: Andrea Fioraldi <andreafioraldi@gmail.com>
-rwxr-xr-x | qemu_mode/build_qemu_support.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qemu_mode/build_qemu_support.sh b/qemu_mode/build_qemu_support.sh index 6436d43a..02a44cef 100755 --- a/qemu_mode/build_qemu_support.sh +++ b/qemu_mode/build_qemu_support.sh @@ -211,8 +211,9 @@ if [ "$STATIC" = "1" ]; then echo Building STATIC binary + # static PIE causes https://github.com/AFLplusplus/AFLplusplus/issues/892 QEMU_CONF_FLAGS="$QEMU_CONF_FLAGS \ - --static \ + --static --disable-pie \ --extra-cflags=-DAFL_QEMU_STATIC_BUILD=1 \ " |