Cross-Platform build scripts for audio plugins
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
372B

  1. diff --git a/siputils.py b/siputils.py
  2. index 457e417..050b130 100644
  3. --- a/siputils.py
  4. +++ b/siputils.py
  5. @@ -951,7 +951,7 @@ class Makefile:
  6. elif sys.platform == "darwin" and framework:
  7. plib = "-framework " + clib
  8. else:
  9. - plib = "-l" + clib
  10. + plib = "-Wl,-Bdynamic -l" + clib + " -Wl,-Bstatic"
  11. return plib