Skip to content

Commit 1afb17e

Browse files
committed
Fix build of compiler-rt on FreeBSD
Broken since ee6011f removed cmake from the process. There are likely other platforms still broken, but I didn't test on them.
1 parent fd1d360 commit 1afb17e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

mk/rt.mk

+4
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,11 @@ COMPRT_OBJS_$(1) += emutls.o
384384
endif
385385

386386
ifeq ($$(findstring msvc,$(1)),)
387+
388+
ifeq ($$(findstring freebsd,$(1)),)
387389
COMPRT_OBJS_$(1) += gcc_personality_v0.o
390+
endif
391+
388392
COMPRT_OBJS_$(1) += emutls.o
389393

390394
ifeq ($$(findstring x86_64,$(1)),x86_64)

0 commit comments

Comments
 (0)