Newer
Older
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
Build recipe for the p690
Author: Douglas Guptill
Date: 2009-07-14, 15
# Edit Makefile.p690
#
# a quirk, make will fail otherwise.
touch Makefile.deps
# install the Makefile specialization for the p690.
make p690
# The default xlf compiler is version 8.1.
# It is not up to the task of compiling douar
PATH=/usr/xlf-10.1/usr/bin:${PATH}
# WSMP wants this.
export OBJECT_MODE=64
# install the latest version of define_bc
make bc_20090710
# build douar.
make
#
# The link will fail if the -extchk option is still there.
#
# look at the ouput
make more-output
# remove -extchk from FFLAGS and CFLAGS in Makefile.p690
# install the editted Makefile.p690
make p690
# remove all the object files and libraries created by the previous make
make distclean
# build douar again
make
#
# After a successful compile and link....
#
# Look at the build output
make more-output
# install the binary
make install