From e3be55d85a6b10bd5f5624c8c519af5ec3d75dec Mon Sep 17 00:00:00 2001 From: Ned Williamson Date: Tue, 12 Oct 2021 11:29:52 -0700 Subject: [PATCH] XNU: Add undefined, make paths in build.sh absolute (#6589) * Add XNU (SockFuzzer) (#6583) * XNU: Make paths in build.sh absolute * Add undefined build Co-authored-by: Ned Williamson --- projects/xnu/build.sh | 4 ++-- projects/xnu/project.yaml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/projects/xnu/build.sh b/projects/xnu/build.sh index 715e32bd2..c296a3369 100755 --- a/projects/xnu/build.sh +++ b/projects/xnu/build.sh @@ -15,8 +15,8 @@ # ################################################################################ -mkdir build -cd build +mkdir $SRC/build +cd $SRC/build cmake -GNinja $SRC/SockFuzzer ninja diff --git a/projects/xnu/project.yaml b/projects/xnu/project.yaml index e0d883189..c9abb09bd 100644 --- a/projects/xnu/project.yaml +++ b/projects/xnu/project.yaml @@ -7,3 +7,4 @@ fuzzing_engines: - honggfuzz sanitizers: - address + - undefined