(see the link page for more information about linking)
Link a standard dynamic library which can be linked with an executable and get automatically loaded and linked when the executable is started. Libraries linked with this task cannot be used as loadable modules on all platforms! (configured using dynamiclibrarylinker)
Attribute | Description | Required |
---|---|---|
output | The name of the library. A platform specific ending and prefix might be added to this name automatically by the linker where appilcable (for example lib<name>.a, <name>.dll, <name>.dylib <name>.lib) | No. Default:
"a.out" |
debug | true turns on debugging symbols. false optimizes for release. Exactly what is done is determined by the command sequence defined for this linker. | No. Default: "true" |
os |
Override the detected OS to use another linker definition. This might be handy when using different compiler suites on the same machine and build script. | No. Default: detected OS name |
An ant FileSet which selects all object files to link into the library file.. It can be accessed using an arglist with the name="objfiles".
...No examples yet.