diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2011-12-02 02:42:07 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2011-12-02 02:42:07 +0000 |
| commit | 2003d39f7c929a02120e530b21ab84718cc945db (patch) | |
| tree | 7da55010cc8eb0239ed85681aa1a31fe1b1108cd /compiler-rt/make/subdir.mk | |
| parent | a91d38a435431672404a65030f6b5896e4564d0e (diff) | |
| download | bcm5719-llvm-2003d39f7c929a02120e530b21ab84718cc945db.tar.gz bcm5719-llvm-2003d39f7c929a02120e530b21ab84718cc945db.zip | |
build: Add ModuleName per-subdir variable as a way to organize the different
sets of functions/objects into high level groups. Currently we have "builtins"
(the main compiler-rt code), "profile", and "asan".
- Use this to define CommonFunctions and ArchFunctions to only reference the
builtins functions.
llvm-svn: 145674
Diffstat (limited to 'compiler-rt/make/subdir.mk')
| -rw-r--r-- | compiler-rt/make/subdir.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler-rt/make/subdir.mk b/compiler-rt/make/subdir.mk index 900f7e6ab7b..5b3c1f0fb2d 100644 --- a/compiler-rt/make/subdir.mk +++ b/compiler-rt/make/subdir.mk @@ -20,7 +20,8 @@ endif # The list of variables which are intended to be overridden in a subdirectory # makefile. -RequiredSubdirVariables := SubDirs ObjNames Implementation Dependencies +RequiredSubdirVariables := \ + ModuleName SubDirs ObjNames Implementation Dependencies OptionalSubdirVariables := OnlyArchs OnlyConfigs # Template: subdir_traverse_template subdir |

