-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
86 lines (46 loc) · 1.75 KB
/
README
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
Vector math library
* Overview
The Vector math library provides 3-D/4-D vector operations including
addition, outer product, multiply by a matrix, etc.
* License
This library is licensed under the terms in the file 'LICENSE' in
this directory.
* Installing
To install this library, run following commands:
- PowerPC with VMX (fully supported)
$ make ARCH=ppu install
- SPU (Cell Broadband Engine Synergistic Processor Unit)
$ make ARCH=spu install
- x86 with SSE (partially supported)
$ make ARCH=SSE install
- Other architectures (partially supported)
$ make install
By default, files in the library will be placed as below:
- headers
/usr/include/vectormath/c/ (C headers)
/usr/include/vectormath/cpp/ (C++ headers)
- SPU headers
/usr/spu/include/vectormath/c/ (C headers)
/usr/spu/include/vectormath/cpp/ (C++ headers)
No shared library, static library nor executable is installed,
because all functions in this library are provided as inline
functions.
* Packaging
By running following command in this directory, a source tarball
'vectormath-<VERSION>.tar.gz' can be created:
$ make dist
You can also create RPM packages by executing the command below with
the tarball:
$ rpmbuild -tb vectormath-1.0.1.tar.gz --target=ppc
One or two packages, vectormath-devel (and, in addition,
spu-vectormath-devel for PowerPC target), will be created.
* Usage
See the documents `doc/*.pdf'.
* Contacting the project
Module maintainer: Erwin Coumans
Feedback and patches:
http://www.bulletphysics.com/Bullet/phpBB2/viewforum.php?f=18
Main repository URL:
http://bullet.svn.sourceforge.net/viewvc/bullet/trunk/Extras/vectormathlibrary
---
EOF