From e585e738d481f10a9749dc7e97d213bae07fcc32 Mon Sep 17 00:00:00 2001 From: Alexey Samsonov Date: Mon, 29 Dec 2014 19:21:59 +0000 Subject: [PATCH] Remove darwin_fat.mk. Summary: Its seems to be replaced by clang_darwin.mk in the Makefile-based build, and is only referenced in unittest scripts, which are broken for a long time now. Test Plan: n/a Reviewers: bob.wilson Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D6574 llvm-svn: 224946 --- compiler-rt/make/platform/darwin_fat.mk | 56 --------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 compiler-rt/make/platform/darwin_fat.mk diff --git a/compiler-rt/make/platform/darwin_fat.mk b/compiler-rt/make/platform/darwin_fat.mk deleted file mode 100644 index 65ecd75..0000000 --- a/compiler-rt/make/platform/darwin_fat.mk +++ /dev/null @@ -1,56 +0,0 @@ -# Configurations to build -# -# This section must define: -# Description - A description of this target. -# Configs - The names of each configuration to build; this is used to build -# multiple libraries inside a single configuration file (for -# example, Debug and Release builds, or builds with and without -# software floating point). -# -# This section must define one of: -# UniversalArchs - A list of architectures to build for, when using universal build -# support (e.g., on Darwin). This should only be used to build fat -# libraries, simply building multiple libraries for different -# architectures should do so using distinct configs, with the -# appropriate choices for CC and CFLAGS. -# -# Arch - The target architecture; this must match the compiler-rt name for the -# architecture and is used to find the appropriate function -# implementations. -# -# When not universal builds, this section may define: -# Arch. - Set the target architecture on a per-config basis. - -Description := Target for building universal libraries for Darwin. - -Configs := Debug Release Profile -UniversalArchs := i386 x86_64 - -# Platform Options -# -# This section may override any of the variables in make/options.mk, using: -#