1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
torch3 for Debian
-----------------
This is the Torch 3 library.
- Upstream do not release any rule to generate dynamic libraries, so
I've do my own Makefile rules to compile them.
$ objdump -x /usr/lib/libtorch.so.3.0.0 | grep SONAME
SONAME libtorch.so.3
For this reason, if you make a Debian package linked against
libtorch3, email me please. I need to know it, and keep in mind you
are not using a dynamic library model by upstream (anyway, I've
emailed upstream and notified that).
- For the above reason I've substantially modified Makefile's making
model. Now Makefile.modules is used to compile every Torch's module,
instead of using one for each dir.
It is responsable to make dynlib too.
- In the -dev package you can find some examples. Copy directory in a
writable place and build examples with makefile you'll find in the
examples' root dir. ie:
$ make decoder/tode
- Some patches have been applied to upstream's tarball, you can find it
in patches/.
-- Cosimo Alfarano <kalfa@debian.org>, Thu, 21 Aug 2003 14:50:28 +0200
|