Skip to content

Commit e262a4c

Browse files
committed
clang++ is supported as compiler for seed projects
1 parent 8dfa8b6 commit e262a4c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/seed/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ INC_NEWLIB=$(INSTALL)/newlib/include
4040
INC_LIBCXX=$(INSTALL)/libcxx/include
4141

4242
CC = $(shell command -v clang-3.8 || command -v clang-3.6) -target i686-elf
43-
CPP = $(shell command -v clang++-3.8 || command -v clang++-3.6) -target i686-elf
43+
CPP = $(shell command -v clang++-3.8 || command -v clang++-3.6 || command -v clang++) -target i686-elf
4444
ifndef LD_INC
4545
LD_INC = ld
4646
endif

src/seed/Makelib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ INC_NEWLIB=$(INSTALL)/newlib/include
2222
INC_LIBCXX=$(INSTALL)/libcxx/include
2323

2424
CC = $(shell command -v clang-3.8 || command -v clang-3.6) -target i686-elf
25-
CPP = $(shell command -v clang++-3.8 || command -v clang++-3.6) -target i686-elf
25+
CPP = $(shell command -v clang++-3.8 || command -v clang++-3.6 || command -v clang++) -target i686-elf
2626

2727
ifndef AR_INC
2828
AR_INC = ar

0 commit comments

Comments
 (0)