Add atomic.c back to the builtins module sources lists (for Makefile build).

llvm-svn: 182420
This commit is contained in:
Daniel Dunbar 2013-05-21 20:40:36 +00:00
parent 23386ed8f2
commit eaa153bdad
1 changed files with 1 additions and 6 deletions

View File

@ -22,13 +22,8 @@ SubDirs += tsan
SubDirs += msan
SubDirs += ubsan
# FIXME: We don't currently support building an atomic library, and as it must
# be a separate library from the runtime library, we need to remove its source
# code from the source files list.
ExcludedSources := atomic.c
# Define the variables for this specific directory.
Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(filter-out $(ExcludedSources),$(notdir $(file))))
Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
ObjNames := $(Sources:%.c=%.o)
Implementation := Generic