Add an exports file for the Hello example plugin.

llvm-svn: 106768
This commit is contained in:
Dan Gohman 2010-06-24 17:36:51 +00:00
parent a612d7c012
commit 4143e9deeb
2 changed files with 8 additions and 0 deletions

View File

View File

@ -12,5 +12,13 @@ LIBRARYNAME = LLVMHello
LOADABLE_MODULE = 1
USEDLIBS =
# If we don't need RTTI or EH, there's no reason to export anything
# from the hello plugin.
ifneq ($(REQUIRES_RTTI), 1)
ifneq ($(REQUIRES_EH), 1)
EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/Hello.exports
endif
endif
include $(LEVEL)/Makefile.common