Changes between Version 3 and Version 4 of Ticket #1462
- Timestamp:
- Mar 8, 2012 7:20:46 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1462 – Description
v3 v4 1 1 We already have Visual Studio project for building libresample (under third_party) as DLL. This ticket adds similar support for building libresample as shared library for GNU targets and linking with it. 2 2 3 To use this feature: 4 3 To build the libraries and samples with libresample as shared library: 5 4 6 5 {{{ 7 6 $ ./aconfigure --enable-resample-dll 8 7 $ make dep && make 9 $ export LD_LIBRARY_PATH=`pwd`/third_party/lib 8 }}} 10 9 11 $ # or set DYLD_LIBRARY_PATH instead on Mac 12 $ 10 The libresample is placed in {{{third_party/lib}}}, hence don't forget to set '''{{{LD_LIBRARY_PATH}}}''' (or '''{{{DYLD_LIBRARY_PATH}}}''' on Mac) accordingly before running an executable. 13 11 14 }}}