mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
override -fvisibility=hidden for the LV2plugin descriptor
This commit is contained in:
parent
3ebd42b873
commit
7418c12a5b
1 changed files with 5 additions and 1 deletions
|
|
@ -199,7 +199,11 @@ static const LV2_Descriptor descriptor = {
|
|||
extension_data
|
||||
};
|
||||
|
||||
LV2_SYMBOL_EXPORT
|
||||
#if defined(COMPILER_MSVC)
|
||||
__declspec(dllexport)
|
||||
#else
|
||||
__attribute__ ((visibility ("default")))
|
||||
#endif
|
||||
const LV2_Descriptor*
|
||||
lv2_descriptor(uint32_t idx)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue