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

clang needs -c for .s files without main

parent 34af67c9
No related branches found
No related tags found
1 merge request!455Update branch with changes from master
......@@ -171,10 +171,12 @@ ifeq ($(CCPRE),clang)
ifeq ($(CC),cc)
CXX := c++
AS := cc
ASFLAGS += -c
else
ifeq ($(CC),clang)
CXX := clang++
AS := clang
ASFLAGS += -c
endif
endif
endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment