A. Hooper

Results 8 comments of A. Hooper

I have sent many crash reports, bu there have been no updates published for three years. If the developers no longer have time to maintain it, perhaps source could be...

same problem (with Plot3DPanel), had to download source and add src/main/resources to run class path

@lagomorph Your `install_name_tool` suggestion was very helpful! Recent MacOS Sonoma updates had broken the libsdrplay_api linkages in my newly built applications. I am guessing this is due to further tightening...

I definitely understand the decision to choose one place, and am not advocating otherwise. If you're running Sonoma 14.2 and Xcode 15 try this little test program: ``` $ cat...

Yes, on Apple M2 when I moved from MacOS 13.something to 14.1. I'd been happily using sdrplay_api for several applications on earlier MacOS. Don't mess with SDRconnect :-) I will...

Yes, DYLD environment variables will hide it, but that seems hackey and is blocked by the default Hardened Runtime. The best I can tell, the standard way to build a...

Here is a revision of @lagomorph's suggestion, to be independent of libsdrplay_api version: ``` if(APPLE) # libsdrplay_api.so install path required by macOS 14 (Sonoma) execute_process(COMMAND readlink -f ${LIBSDRPLAY_LIBRARIES} OUTPUT_STRIP_TRAILING_WHITESPACE OUTPUT_VARIABLE...

No, the library path built into the binary is the one explicitly set in the .so library: ``` $ cc -o sdrplay_api_version sdrplay_api_version.c /usr/local/lib/libsdrplay_api.so $ ./sdrplay_api_version dyld[12438]: Library not loaded:...