From 6936d60cdec29a2433a9d830b58e8bc65907ad70 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Tue, 11 Oct 2011 18:27:10 +0200 Subject: [PATCH] build: don't set CC and AR Allows user to override compiler and archiver through the CC and AR environment variables. Note that this already worked as expected with `make CC=clang`. --- config-unix.mk | 2 -- 1 file changed, 2 deletions(-) diff --git a/config-unix.mk b/config-unix.mk index 3453132a..7f596fb8 100644 --- a/config-unix.mk +++ b/config-unix.mk @@ -18,8 +18,6 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. -CC = $(PREFIX)gcc -AR = $(PREFIX)ar E= CSTDFLAG=--std=c89 -pedantic -Wall -Wextra -Wno-unused-parameter CFLAGS += -g