mirror of https://github.com/google/oss-fuzz.git
[ibmswtpm2] Speculative fix for AFL++ issue. (#5451)
* [ibmswtpm2] Speculative fix for AFL++ issue. Try to fix issue by using CC and CXX from env. Fixes #5093 * fix
This commit is contained in:
parent
0915194f24
commit
06cfe8c8cf
|
@ -84,12 +84,10 @@ diff --git a/makefile b/makefile
|
||||||
index cc3e410..c10ba5a 100644
|
index cc3e410..c10ba5a 100644
|
||||||
--- a/makefile
|
--- a/makefile
|
||||||
+++ b/makefile
|
+++ b/makefile
|
||||||
@@ -40,16 +40,19 @@
|
@@ -40,16 +40,16 @@
|
||||||
|
|
||||||
|
|
||||||
CC = /usr/bin/gcc
|
-CC = /usr/bin/gcc
|
||||||
+CC = clang
|
|
||||||
+CXX = clang++
|
|
||||||
|
|
||||||
-CCFLAGS = -Wall \
|
-CCFLAGS = -Wall \
|
||||||
+CCFLAGS = $(CFLAGS) -Wall \
|
+CCFLAGS = $(CFLAGS) -Wall \
|
||||||
|
|
Loading…
Reference in New Issue