forked from OSchip/llvm-project
Add an exports file for the Hello example plugin.
llvm-svn: 106768
This commit is contained in:
parent
a612d7c012
commit
4143e9deeb
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue