forked from CachyOS/packageinstaller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.sh
executable file
·143 lines (128 loc) · 3.9 KB
/
configure.sh
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
#!/bin/bash
# Copyright (C) 2022-2024 Vladislav Nepogodin
#
# This file is part of CachyOS kernel manager.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
set -e
cd "`dirname "$0"`"
if [[ $1 == "--help" ]]; then
cat<<EOF
Usage: configure.sh [options]
Options:
--help Display this information.
--buildtype=, -t= Specify build type.
--prefix= Specify install prefix.
--libdir= Specify lib directory.
--path=, -p= Specify build directory.
--use_clang Use Clang compiler.
--enable_sanitizer_address Enable ASAN.
--enable_sanitizer_ub Enable UBSAN.
--enable_sanitizer_leak Enable LEAKSAN.
EOF
exit 0
fi
_buildpath="build"
_prefix="/usr/local"
_libdir="lib"
_buildtype="RelWithDebInfo"
_use_clang=false
_sanitizer_address=OFF
_sanitizer_UB=OFF
_sanitizer_leak=OFF
for i in "$@"; do
case $i in
-t=*|--buildtype=*)
_buildtype="${i#*=}"
shift # past argument=value
;;
--prefix=*)
_prefix="${i#*=}"
shift # past argument=value
;;
--libdir=*)
_libdir="${i#*=}"
shift # past argument=value
;;
-p=*|--path=*)
_buildpath="${i#*=}"
shift # past argument=value
;;
--use_clang)
_use_clang=true
shift # past argument=value
;;
--enable_sanitizer_address)
_sanitizer_address=ON
shift # past argument=value
;;
--enable_sanitizer_ub)
_sanitizer_UB=ON
shift # past argument=value
;;
--enable_sanitizer_leak)
_sanitizer_leak=ON
shift # past argument=value
;;
*)
# unknown option
;;
esac
done
if ${_use_clang}; then
export AR=llvm-ar
export CC=clang
export CXX=clang++
export NM=llvm-nm
export RANLIB=llvm-ranlib
fi
if command -v ninja &> /dev/null; then
_configure_flags+=('-GNinja')
fi
if command -v mold &> /dev/null; then
_configure_flags+=('-DCMAKE_EXE_LINKER_FLAGS="-fuse-ld=mold"')
fi
cmake -S . -B ${_buildpath}/${_buildtype} \
-DENABLE_SANITIZER_ADDRESS=${_sanitizer_address} \
-DENABLE_SANITIZER_UNDEFINED_BEHAVIOR=${_sanitizer_UB} \
-DENABLE_SANITIZER_LEAK=${_sanitizer_leak} \
-DCMAKE_BUILD_TYPE=${_buildtype} \
-DCMAKE_INSTALL_PREFIX=${_prefix} \
-DCMAKE_INSTALL_LIBDIR=${_libdir} \
"${_configure_flags[@]}"
cat > build.sh <<EOF
#!/bin/bash
# Copyright (C) 2022-2024 Vladislav Nepogodin
#
# This file is part of CachyOS kernel manager.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
set -e
cd "\`dirname "\$0"\`"
cmake --build ${_buildpath}/${_buildtype} --parallel $(nproc)
EOF
chmod +x ./build.sh