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

clang needs -c for .s files without main

parent 9c328871
No related branches found
No related tags found
No related merge requests found
Pipeline #5190 passed
......@@ -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