mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-02-21 09:39:58 +00:00
Unfortunately, CC ?= afl-gcc doesn't work. This is because CC has a default value (of "cc"), and the ?= operator only assigns a value if the variable previously had none. "make" currently compiles with cc. In this patch, I implemented the more elaborate way to achieve what was probably intended: "make" will use afl-gcc now, and "make CC=foo" will compile with "foo".