-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathINSTALL
43 lines (29 loc) · 1.12 KB
/
INSTALL
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
== UTIA ASVP platform ==
For cross-compilation for UTIA ASVP platform (formerly EdkDSP platform)
unpack files from asvpsdk-api-1.0.zip archive into ./api directory. This
archive can be downloaded from:
http://sp.utia.cz/index.php?ids=projects/smecy&id=downloads
Now, you will need properly configured PicoBlaze and PetaLinux compiler for
library compilation. You can test it on example application in directory
./examples/simple with command:
make ARCH=asvp
== PC platform ==
Compile the example application like above but with command:
make ARCH=x86_64
For example, a simple application showing libdwt API usage can be compiled
and started with:
make -C examples/simple run
You can also compile the libdwt static library like follows:
make ARCH=x86_64 BUILD=release -C src libdwt.a
Finally, do not forget to link your application also with -lm, -lrt, and
enable OpenMP with -fopenmp.
== Dependencies ==
* glibc/uClibc
* ASVP/EdkDSP SDK (optional on ASVP)
* Make
* GCC
** OpenMP support (optional)
* PicoBlaze C Compiler Toolchain V2 (optional on ASVP)
* Doxygen (optional)
* gnuplot (optional for examples)
* OpenEXR (optional)