在OSX上编译auto-talent插件

时间:2012-05-27 04:32:37

标签: macos makefile audacity

我正在尝试编译auto-talent插件(http://tombaran.info/autotalent.html),以便在Mac上用作LADSPA Audacity插件。我在Linux上正确地遵循了指示,但我想知道如何为Mac构建一个版本,如果可能的话。

我下载了0.2源,然后运行“make”。但是我收到以下错误:

gcc -I. -O3 -Wall -fomit-frame-pointer -fstrength-reduce -funroll-loops -ffast-math -c -fPIC -DPIC autotalent.c mayer_fft.c
gcc -nostartfiles -shared -Wl,-Bsymbolic -lc -lm -lrt -o autotalent.so autotalent.o mayer_fft.o
ld: unknown option: -Bsymbolic
collect2: ld returned 1 exit status
make: *** [autotalent.so] Error 1

所以没有.so文件生成但是.o文件已经生成。这有什么机会可以轻松解决吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

OSX有一种不同形式的Linux共享库。请参阅Apple's Dynamic Library Programming Topics

要创建共享库,命令就像

gcc -dynamiclib  autotalent.c mayer_fft.c -current_version 1.0 -compatibility_version 1.0 -fvisibility=hidden -o lib autotalent.A.dylib