Skip to content
Snippets Groups Projects
Commit 34af67c9 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 eedd48da
No related branches found
No related tags found
1 merge request!455Update branch with changes from master
...@@ -170,9 +170,11 @@ CCPRE ?= ${shell if [ `echo __clang__ | $(CC) -E - | grep -v '^\#'` != __clang__ ...@@ -170,9 +170,11 @@ CCPRE ?= ${shell if [ `echo __clang__ | $(CC) -E - | grep -v '^\#'` != __clang__
ifeq ($(CCPRE),clang) ifeq ($(CCPRE),clang)
ifeq ($(CC),cc) ifeq ($(CC),cc)
CXX := c++ CXX := c++
AS := cc
else else
ifeq ($(CC),clang) ifeq ($(CC),clang)
CXX := clang++ CXX := clang++
AS := clang
endif endif
endif endif
endif endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment