Skip to content
This repository was archived by the owner on Dec 20, 2019. It is now read-only.

Commit e000d5e

Browse files
committed
LDC: Add compiler-rt as git submodule
Including minor fixes to build the 'builtins' library properly for Windows with clang-cl. Building with clang is required to make the library include some objects implemented in ASM, as the MS assembler doesn't support the used AT&T syntax. There were some more minor annoyances standing in the way of using LDC with MinGW-w64-based libs.
1 parent 03e4082 commit e000d5e

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ autoconf/autom4te.cache
5252
# Directories to ignore (do not add trailing '/'s, they skip symlinks).
5353
#==============================================================================#
5454
# External projects that are tracked independently.
55-
projects/*
55+
#projects/*
5656
!projects/*.*
5757
!projects/Makefile
5858
runtimes/*

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[submodule "lld"]
22
path = tools/lld
33
url = https://github.com/ldc-developers/lld.git
4+
[submodule "projects/compiler-rt"]
5+
path = projects/compiler-rt
6+
url = https://github.com/ldc-developers/compiler-rt.git

projects/compiler-rt

Submodule compiler-rt added at e0ed7c0

0 commit comments

Comments
 (0)