[PATCH] D14290: compiler-rt: add make solution to bootstrap for mingw-w64

Martell Malone via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 12 16:24:10 PST 2015


This revision was automatically updated to reflect the committed changes.
Closed by commit rL252976: compiler-rt: add make solution to bootstrap mingw-w64 (authored by martell).

Changed prior to commit:
  http://reviews.llvm.org/D14290?vs=40093&id=40098#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D14290

Files:
  compiler-rt/trunk/make/platform/clang_mingw.mk

Index: compiler-rt/trunk/make/platform/clang_mingw.mk
===================================================================
--- compiler-rt/trunk/make/platform/clang_mingw.mk
+++ compiler-rt/trunk/make/platform/clang_mingw.mk
@@ -0,0 +1,30 @@
+Description := Static runtime libraries for mingw-w64
+
+###
+
+CC ?= cc
+AR ?= ar
+
+Arch := unknown
+Configs :=
+
+SupportedArches := x86_64 i386 arm
+
+Configs += builtins-x86_64 builtins-i386 builtins-arm
+Arch.builtins-x86_64 := x86_64
+Arch.builtins-i386 := i386
+Arch.builtins-arm := arm
+
+###
+
+CFLAGS := -Wall -O3 -fomit-frame-pointer
+CFLAGS.builtins-x86_64 := -target x86_64-windows-gnu $(CFLAGS)
+CFLAGS.builtins-i386 := -target i686-windows-gnu $(CFLAGS)
+CFLAGS.builtins-arm := -target armv7-windows-gnu $(CFLAGS)
+
+FUNCTIONS.builtins-x86_64 := $(CommonFunctions) $(ArchFunctions.x86_64)
+FUNCTIONS.builtins-i386 := $(CommonFunctions) $(ArchFunctions.i386)
+FUNCTIONS.builtins-arm := $(CommonFunctions) $(ArchFunctions.arm)
+
+# Always use optimized variants.
+OPTIMIZED := 1


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D14290.40098.patch
Type: text/x-patch
Size: 1035 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20151113/b9707851/attachment.bin>


More information about the llvm-commits mailing list