You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, i wanted to control daw tempo from my plugdata pluginMode patch.
I had luck compiling plugdata with Xcode and with abl_link~, for this purpose.
But when i updated pure_data module, this error came :
ld: Undefined symbols:
libpd_blocksize(), referenced from:
abl_link::AblLinkWrapper::acquireAudioSessionState(std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000l>>*) in libexternals.a[arm64]3
clang: error: linker command failed with exit code 1 (use -v to see invocation)
AblLinkWrapper references DEFDACBLKSIZE : #define DEFDACBLKSIZE (libpd_blocksize()) in pd s_stuff.h
AblLinkWrapper #include "s_stuff.h" // Only for DEFDACBLKSIZE.
it links ok when old definition DEFDACBLKSIZE 64 is used, so may I go back to this ( but what will be result of changing pd blocksize and not abl_link one ? ) or perhaps to another workaround ? Thanks
The text was updated successfully, but these errors were encountered:
Oh, that is strange. I think I may have to revert that change anyway, since it would cause problems with externals anyway if you actually use a blocksize other than 64.
Hi, i wanted to control daw tempo from my plugdata pluginMode patch.
I had luck compiling plugdata with Xcode and with abl_link~, for this purpose.
But when i updated pure_data module, this error came :
ld: Undefined symbols:
libpd_blocksize(), referenced from:
abl_link::AblLinkWrapper::acquireAudioSessionState(std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000l>>*) in libexternals.a[arm64]3
clang: error: linker command failed with exit code 1 (use -v to see invocation)
AblLinkWrapper references DEFDACBLKSIZE : #define DEFDACBLKSIZE (libpd_blocksize()) in pd s_stuff.h
AblLinkWrapper #include "s_stuff.h" // Only for DEFDACBLKSIZE.
it links ok when old definition DEFDACBLKSIZE 64 is used, so may I go back to this ( but what will be result of changing pd blocksize and not abl_link one ? ) or perhaps to another workaround ? Thanks
The text was updated successfully, but these errors were encountered: