blob: 95ac8207264a14250af6a4f49ad7eb5eb6bcce8f (
plain)
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
|
Any knowledge of how to work with mouse and icons is not required.
Installing osl
~~~~~~~~~~~~~~
git clone https://git.tuebingen.mpg.de/osl
cd osl && make && sudo make install
(see https://people.tuebingen.mpg.de/maan/osl/)
Installing paraslash from git
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
autoconf && autoheader && ./configure && make && sudo make install
Example for cross-compiling
~~~~~~~~~~~~~~~~~~~~~~~~~~~
export CC='armv6j-hardfloat-linux-gnueabi-gcc'
export PATH="/usr/cross/arm/bin:$PATH"
export LDFLAGS='
-L/usr/sysroot/arm/lib
-L/usr/sysroot/arm/usr/lib
-L/usr/sysroot/arm/usr/lib/glibc/lib
-L/usr/sysroot/arm/usr/local/ssl/lib
'
autoconf
autoheader
./configure --host=arm-linux-gnueabi --prefix /usr/sysroot/arm/usr/local
make
For details see the user manual:
https://people.tuebingen.mpg.de/maan/paraslash/manual.html
|