Skip to content
Snippets Groups Projects
Commit 9c328871 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

If we're using Clang as the compiler, use it as the assembler too.

Should fix issue reported by Floffy on IRC.
parent 84475364
No related branches found
No related tags found
No related merge requests found
Pipeline #5188 failed
......@@ -170,9 +170,11 @@ CCPRE ?= ${shell if [ `echo __clang__ | $(CC) -E - | grep -v '^\#'` != __clang__
ifeq ($(CCPRE),clang)
ifeq ($(CC),cc)
CXX := c++
AS := cc
else
ifeq ($(CC),clang)
CXX := clang++
AS := clang
endif
endif
endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment