diff options
author | Alexey Samsonov <samsonov@google.com> | 2014-02-14 09:20:33 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2014-02-14 09:20:33 +0000 |
commit | a6b264b51d4fa786d9df659621fc1ffad1fdc5d0 (patch) | |
tree | 416fdf341f03ee1f373907f65ce054afc40d7ab1 /compiler-rt/make | |
parent | 0b28ea9c471308faf04b4b6695c9f016aabea49a (diff) | |
download | bcm5719-llvm-a6b264b51d4fa786d9df659621fc1ffad1fdc5d0.tar.gz bcm5719-llvm-a6b264b51d4fa786d9df659621fc1ffad1fdc5d0.zip |
Move original compiler-rt functions (libgcc replacement) to lib/builtins directory
llvm-svn: 201393
Diffstat (limited to 'compiler-rt/make')
-rw-r--r-- | compiler-rt/make/subdir.mk | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/compiler-rt/make/subdir.mk b/compiler-rt/make/subdir.mk index 6dadc7b6131..f81c25f032b 100644 --- a/compiler-rt/make/subdir.mk +++ b/compiler-rt/make/subdir.mk @@ -2,12 +2,13 @@ # # Subdirectory makefiles must define: # SubDirs - The subdirectories to traverse. +# +# Subdirectory makefiles may define: +# ModuleName - The library name for objects in that directory. # ObjNames - The objects available in that directory. # Implementation - The library configuration the objects should go in (Generic # or Optimized) # Dependencies - Any dependences for the object files. -# -# Subdirectory makefiles may define: # OnlyArchs - Only build the objects for the listed archs. # OnlyConfigs - Only build the objects for the listed configurations. @@ -20,9 +21,9 @@ endif # The list of variables which are intended to be overridden in a subdirectory # makefile. -RequiredSubdirVariables := \ - ModuleName SubDirs ObjNames Implementation Dependencies -OptionalSubdirVariables := OnlyArchs OnlyConfigs +RequiredSubdirVariables := SubDirs +OptionalSubdirVariables := ModuleName OnlyArchs OnlyConfigs \ + ObjNames Implementation Dependencies # Template: subdir_traverse_template subdir define subdir_traverse_template |