From db12da9acfb2c33b2a9cbc7a4ee0095ec7c039de Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Tue, 17 Oct 2017 11:51:13 +0000 Subject: [PATCH] Update d/rules to reflect the move of libfuzzer into compiler-rt --- debian/changelog | 1 + debian/rules | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index adca74b8..6f75dba6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ llvm-toolchain-snapshot (1:6.0~svn315736-2) unstable; urgency=medium * Also ship ld64.lld in the lld-X.Y package + * Update d/rules to reflect the move of libfuzzer into compiler-rt -- Sylvestre Ledru Mon, 16 Oct 2017 10:24:33 +0200 diff --git a/debian/rules b/debian/rules index f02153c1..cf2b44e1 100755 --- a/debian/rules +++ b/debian/rules @@ -302,7 +302,7 @@ ifeq (${LIBFUZZER_ENABLE},yes) CFLAGS=`dpkg-buildflags --get CFLAGS`; \ CFLAGS="$$CFLAGS `dpkg-buildflags --get CPPFLAGS`"; \ echo $$CFLAGS; \ - bin/clang++ -c $$CFLAGS -std=c++11 ../lib/Fuzzer/*.cpp -IFuzzer; \ + bin/clang++ -c $$CFLAGS -std=c++11 ../compiler-rt/lib/fuzzer/*.cpp -IFuzzer; \ ar ruv libFuzzer.a Fuzzer*.o endif