stages: 1/16-qi: set targetdir and packagedir for the final system
[dragora.git] / stages / 1 / 16-qi
blobe734dfa15312f3cc38ed50316e49f38b9a5b1f8e
1 # Build script for qi.
3 # Copyright (c) 2015-2019 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 echo "Making Qi from ${CWD}/qi ..."
19 cd -- "${CWD}/qi"
21 make -j1 clean
23 ./configure \
24  --prefix=/tools \
25  --packagedir=/usr/pkg \
26  --targetdir=/
28 make -j1 install
30 # Clean up the source repository
32 rm -f config.mak
33 make -j1 clean
35 # Copy our custom qirc to /tools
36 cp -p "${worktree}/archive/qi/qirc" /tools/etc/
38 # Set compiler options provided by default in Dragora
39 case $arch in
40 i586)
41     sed -i \
42      -e 's|#QICFLAGS=.*|QICFLAGS=-g0 -Os -march=i586 -mtune=i686|' \
43      -e 's|#QICXXFLAGS=.*|QICXXFLAGS=-g0 -Os -march=i586 -mtune=i686|' \
44      /tools/etc/qirc
45     ;;
46 x86_64)
47     sed -i \
48      -e 's|#QICFLAGS=.*|QICFLAGS=-g0 -Os -mtune=generic -pipe|' \
49      -e 's|#QICXXFLAGS=.*|QICXXFLAGS=-g0 -Os -mtune=generic -pipe|' \
50      /tools/etc/qirc
51     ;;
53     sed -i \
54      -e 's|#QICFLAGS=.*|QICFLAGS=-g0 -Os -pipe|' \
55      -e 's|#QICXXFLAGS=.*|QICXXFLAGS=-g0 -Os -pipe|' \
56      /tools/etc/qirc
57     ;;
58 esac
60 # Include additional settings from targets/
62 # We prefix '--enable-multilib' for targets supporting it,
63 # the native GCC wants this option explicitly
64 if test -n "$multilib_options"
65 then
66     case $multilib_options in
67     *--disable-multilib* | *--enable-multilib* | *--with-multilib-list=)
68         true
69         ;;
70     *)
71         multilib_options="--enable-multilib $multilib_options"
72         ;;
73     esac
76 cat << EOF >> /tools/etc/qirc
78 # Multilib options
79 multilib_options=$multilib_options
81 # lib<equal> suffix (multilib, if any)
82 libSuffix=$libSuffix
84 # GCC (arch-specific) options
85 gcc_options=$gcc_options
86 EOF
88 chmod 644 /tools/etc/qirc