Added support for the 'export_symbols' parameter to 'link_shared_object()'

and 'link_shared_lib()'.  In MSVCCompiler, this is meaningful: it adds
/EXPORT: options to the linker command line.  In UnixCCompiler, it
is ignored.
This commit is contained in:
Greg Ward 2000-05-20 13:23:21 +00:00
parent 974f70d97b
commit 5299b6afc5
3 changed files with 22 additions and 3 deletions

View file

@ -493,6 +493,7 @@ class CCompiler:
libraries=None,
library_dirs=None,
runtime_library_dirs=None,
export_symbols=None,
debug=0,
extra_preargs=None,
extra_postargs=None):
@ -515,7 +516,13 @@ class CCompiler:
search for libraries that were specified as bare library names
(ie. no directory component). These are on top of the system
default and those supplied to 'add_library_dir()' and/or
'set_library_dirs()'.
'set_library_dirs()'. 'runtime_library_dirs' is a list of
directories that will be embedded into the shared library and
used to search for other shared libraries that *it* depends on
at run-time. (This may only be relevant on Unix.)
'export_symbols' is a list of symbols that the shared library
will export. (This appears to be relevant only on Windows.)
'debug' is as for 'compile()' and 'create_static_lib()', with the
slight distinction that it actually matters on most platforms
@ -536,6 +543,7 @@ class CCompiler:
libraries=None,
library_dirs=None,
runtime_library_dirs=None,
export_symbols=None,
debug=0,
extra_preargs=None,
extra_postargs=None):