Re: [PATCH] makefiles: support building shared libs on Darwin

2023-09-16 Thread John-Mark Bell
On 01/07/2023 04:50, Caleb Xu wrote: On Darwin (macOS), the flags needed to create a shared library are different. Moreover, the extension is .dylib and the version portion of the soname is inserted between the library name and the libext, e.g. lifoo.1.2.3.dylib. Applied. Thank you. John-Mark

[PATCH] makefiles: support building shared libs on Darwin

2023-06-30 Thread Caleb Xu
On Darwin (macOS), the flags needed to create a shared library are different. Moreover, the extension is .dylib and the version portion of the soname is inserted between the library name and the libext, e.g. lifoo.1.2.3.dylib. Signed-off-by: Caleb Xu --- makefiles/Makefile.clang | 7 ++- ma