forked from apache/kudu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-definitions.sh
554 lines (504 loc) · 16.1 KB
/
build-definitions.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
#!/bin/bash
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# build-definitions.sh provides functions to build thirdparty dependencies.
# These functions do not take positional arguments, but individual builds may
# be influenced by setting environment variables:
#
# * PREFIX - the install destination directory.
# * MODE_SUFFIX - an optional suffix to add to each build directory's name.
# * EXTRA_CFLAGS - additional flags to pass to the C compiler.
# * EXTRA_CXXFLAGS - additional flags to pass to the C++ compiler.
# * EXTRA_LDFLAGS - additional flags to pass to the linker.
# * EXTRA_LIBS - additional libraries to link.
#
# build-definitions.sh is meant to be sourced from build-thirdparty.sh, and
# relies on environment variables defined there and in vars.sh.
# Save the current build environment.
save_env() {
_PREFIX=${PREFIX}
_MODE_SUFFIX=${MODE_SUFFIX}
_EXTRA_CFLAGS=${EXTRA_CFLAGS}
_EXTRA_CXXFLAGS=${EXTRA_CXXFLAGS}
_EXTRA_LDFLAGS=${EXTRA_LDFLAGS}
_EXTRA_LIBS=${EXTRA_LIBS}
}
# Restore the most recently saved build environment.
restore_env() {
PREFIX=${_PREFIX}
MODE_SUFFIX=${_MODE_SUFFIX}
EXTRA_CFLAGS=${_EXTRA_CFLAGS}
EXTRA_CXXFLAGS=${_EXTRA_CXXFLAGS}
EXTRA_LDFLAGS=${_EXTRA_LDFLAGS}
EXTRA_LIBS=${_EXTRA_LIBS}
}
# Some versions of libtool are vulnerable to a bug[1] wherein clang's -stdlib
# parameter isn't passed through to the link command line. This causes the
# libtool to link the shared object against libstdc++ instead of libc++.
#
# The bug was only fixed in version 2.4.2 of libtool and el6 carries version
# 2.2.6, so we work around it here.
#
# 1. https://debbugs.gnu.org/db/10/10579.html
fixup_libtool() {
if [[ ! "$EXTRA_CXXFLAGS" =~ "-stdlib=libc++" ]]; then
echo "libtool does not need to be fixed up: not using libc++"
return
fi
if [ ! -f libtool ]; then
echo "libtool not found"
exit 1
fi
if ! grep -q -e 'postdeps=.*-lstdc++' libtool; then
echo "libtool does not need to be fixed up: already configured for libc++"
return
fi
# Modify a line like:
#
# postdeps="-lfoo -lstdc++ -lbar -lstdc++ -lbaz"
#
# To become:
#
# postdeps="-lfoo -lc++ -lbar -lc++ -lbaz"
sed -i.before_fixup -e '/postdeps=/s/-lstdc++/-lc++/g' libtool
echo "libtool has been fixed up"
}
build_cmake() {
CMAKE_BDIR=$TP_BUILD_DIR/$CMAKE_NAME$MODE_SUFFIX
mkdir -p $CMAKE_BDIR
pushd $CMAKE_BDIR
$CMAKE_SOURCE/bootstrap \
--prefix=$PREFIX \
--parallel=$PARALLEL
make -j$PARALLEL
make install
popd
}
build_libcxxabi() {
LIBCXXABI_BDIR=$TP_BUILD_DIR/llvm-$LLVM_VERSION.libcxxabi$MODE_SUFFIX
mkdir -p $LIBCXXABI_BDIR
pushd $LIBCXXABI_BDIR
rm -Rf CMakeCache.txt CMakeFiles/
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=$PREFIX \
-DCMAKE_CXX_FLAGS="$EXTRA_CXXFLAGS $EXTRA_LDFLAGS" \
-DLLVM_PATH=$LLVM_SOURCE \
$LLVM_SOURCE/projects/libcxxabi
make -j$PARALLEL install
popd
}
build_libcxx() {
local BUILD_TYPE=$1
case $BUILD_TYPE in
"tsan")
SANITIZER_TYPE=Thread
;;
*)
echo "Unknown build type: $BUILD_TYPE"
exit 1
;;
esac
LIBCXX_BDIR=$TP_BUILD_DIR/llvm-$LLVM_VERSION.libcxx$MODE_SUFFIX
mkdir -p $LIBCXX_BDIR
pushd $LIBCXX_BDIR
rm -Rf CMakeCache.txt CMakeFiles/
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=$PREFIX \
-DCMAKE_CXX_FLAGS="$EXTRA_CXXFLAGS $EXTRA_LDFLAGS" \
-DLLVM_PATH=$LLVM_SOURCE \
-DLIBCXX_CXX_ABI=libcxxabi \
-DLIBCXX_CXX_ABI_INCLUDE_PATHS=$LLVM_SOURCE/projects/libcxxabi/include \
-DLLVM_USE_SANITIZER=$SANITIZER_TYPE \
$LLVM_SOURCE/projects/libcxx
make -j$PARALLEL install
popd
}
build_or_find_python() {
if [ -n "$PYTHON_EXECUTABLE" ]; then
return
fi
# Build Python only if necessary.
if [[ $(python2.7 -V 2>&1) =~ "Python 2.7." ]]; then
PYTHON_EXECUTABLE=$(which python2.7)
elif [[ $(python -V 2>&1) =~ "Python 2.7." ]]; then
PYTHON_EXECUTABLE=$(which python)
else
PYTHON_BDIR=$TP_BUILD_DIR/$PYTHON_NAME$MODE_SUFFIX
mkdir -p $PYTHON_BDIR
pushd $PYTHON_BDIR
$PYTHON_SOURCE/configure
make -j$PARALLEL
PYTHON_EXECUTABLE="$PYTHON_BDIR/python"
popd
fi
}
build_llvm() {
local TOOLS_ARGS=
local BUILD_TYPE=$1
build_or_find_python
# Always disabled; these subprojects are built standalone.
TOOLS_ARGS="$TOOLS_ARGS -DLLVM_TOOL_LIBCXX_BUILD=OFF"
TOOLS_ARGS="$TOOLS_ARGS -DLLVM_TOOL_LIBCXXABI_BUILD=OFF"
case $BUILD_TYPE in
"normal")
# Default build: core LLVM libraries, clang, compiler-rt, and all tools.
;;
"tsan")
# Build just the core LLVM libraries, dependent on libc++.
TOOLS_ARGS="$TOOLS_ARGS -DLLVM_ENABLE_LIBCXX=ON"
TOOLS_ARGS="$TOOLS_ARGS -DLLVM_INCLUDE_TOOLS=OFF"
TOOLS_ARGS="$TOOLS_ARGS -DLLVM_TOOL_COMPILER_RT_BUILD=OFF"
# Configure for TSAN.
TOOLS_ARGS="$TOOLS_ARGS -DLLVM_USE_SANITIZER=Thread"
;;
*)
echo "Unknown LLVM build type: $BUILD_TYPE"
exit 1
;;
esac
LLVM_BDIR=$TP_BUILD_DIR/llvm-$LLVM_VERSION$MODE_SUFFIX
mkdir -p $LLVM_BDIR
pushd $LLVM_BDIR
# Rebuild the CMake cache every time.
rm -Rf CMakeCache.txt CMakeFiles/
# The LLVM build can fail if a different version is already installed
# in the install prefix. It will try to link against that version instead
# of the one being built.
rm -Rf $PREFIX/include/{llvm*,clang*} \
$PREFIX/lib/lib{LLVM,LTO,clang}* \
$PREFIX/lib/clang/ \
$PREFIX/lib/cmake/{llvm,clang}
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=$PREFIX \
-DLLVM_INCLUDE_DOCS=OFF \
-DLLVM_INCLUDE_EXAMPLES=OFF \
-DLLVM_INCLUDE_TESTS=OFF \
-DLLVM_INCLUDE_UTILS=OFF \
-DLLVM_TARGETS_TO_BUILD=X86 \
-DLLVM_ENABLE_RTTI=ON \
-DCMAKE_CXX_FLAGS="$EXTRA_CXXFLAGS $EXTRA_LDFLAGS" \
-DPYTHON_EXECUTABLE=$PYTHON_EXECUTABLE \
$TOOLS_ARGS \
$LLVM_SOURCE
make -j$PARALLEL install
if [[ "$BUILD_TYPE" == "normal" ]]; then
# Create a link from Clang to thirdparty/clang-toolchain. This path is used
# for all Clang invocations. The link can't point to the Clang installed in
# the prefix directory, since this confuses CMake into believing the
# thirdparty prefix directory is the system-wide prefix, and it omits the
# thirdparty prefix directory from the rpath of built binaries.
ln -sfn $LLVM_BDIR $TP_DIR/clang-toolchain
fi
popd
}
build_gflags() {
GFLAGS_BDIR=$TP_BUILD_DIR/$GFLAGS_NAME$MODE_SUFFIX
mkdir -p $GFLAGS_BDIR
pushd $GFLAGS_BDIR
rm -rf CMakeCache.txt CMakeFiles/
CXXFLAGS="$EXTRA_CFLAGS $EXTRA_CXXFLAGS $EXTRA_LDFLAGS $EXTRA_LIBS" \
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_POSITION_INDEPENDENT_CODE=On \
-DCMAKE_INSTALL_PREFIX=$PREFIX \
-DBUILD_SHARED_LIBS=On \
-DBUILD_STATIC_LIBS=On \
$GFLAGS_SOURCE
make -j$PARALLEL install
popd
}
build_libunwind() {
LIBUNWIND_BDIR=$TP_BUILD_DIR/$LIBUNWIND_NAME$MODE_SUFFIX
mkdir -p $LIBUNWIND_BDIR
pushd $LIBUNWIND_BDIR
# Disable minidebuginfo, which depends on liblzma, until/unless we decide to
# add liblzma to thirdparty.
$LIBUNWIND_SOURCE/configure \
--disable-minidebuginfo \
--with-pic \
--prefix=$PREFIX
make -j$PARALLEL install
popd
}
build_glog() {
GLOG_BDIR=$TP_BUILD_DIR/$GLOG_NAME$MODE_SUFFIX
mkdir -p $GLOG_BDIR
pushd $GLOG_BDIR
# glog depends on libunwind and gflags.
#
# Specifying -Wl,-rpath has different default behavior on GNU binutils ld vs.
# the GNU gold linker. ld sets RPATH (due to defaulting to --disable-new-dtags)
# and gold sets RUNPATH (due to defaulting to --enable-new-dtags). At the time
# of this writing, contrary to the way RPATH is treated, when RUNPATH is
# specified on a binary, glibc doesn't respect it for transitive (non-direct)
# library dependencies (see https://sourceware.org/bugzilla/show_bug.cgi?id=13945).
# So we must set RUNPATH for all deps-of-deps on the dep libraries themselves.
#
# This comment applies both here and the locations elsewhere in this script
# where we add something to -Wl,-rpath.
CXXFLAGS="$EXTRA_CXXFLAGS -I$PREFIX/include" \
LDFLAGS="$EXTRA_LDFLAGS -L$PREFIX/lib -Wl,-rpath,$PREFIX/lib" \
LIBS="$EXTRA_LIBS" \
$GLOG_SOURCE/configure \
--with-pic \
--prefix=$PREFIX \
--with-gflags=$PREFIX
fixup_libtool
make -j$PARALLEL install
popd
}
build_gperftools() {
GPERFTOOLS_BDIR=$TP_BUILD_DIR/$GPERFTOOLS_NAME$MODE_SUFFIX
mkdir -p $GPERFTOOLS_BDIR
pushd $GPERFTOOLS_BDIR
CFLAGS="$EXTRA_CFLAGS" \
CXXFLAGS="$EXTRA_CXXFLAGS" \
LDFLAGS="$EXTRA_LDFLAGS" \
LIBS="$EXTRA_LIBS" \
$GPERFTOOLS_SOURCE/configure \
--enable-frame-pointers \
--enable-heap-checker \
--with-pic \
--prefix=$PREFIX
fixup_libtool
make -j$PARALLEL install
popd
}
build_gmock() {
GMOCK_SHARED_BDIR=$TP_BUILD_DIR/$GMOCK_NAME.shared$MODE_SUFFIX
GMOCK_STATIC_BDIR=$TP_BUILD_DIR/$GMOCK_NAME.static$MODE_SUFFIX
for SHARED in ON OFF; do
if [ $SHARED = "ON" ]; then
GMOCK_BDIR=$GMOCK_SHARED_BDIR
else
GMOCK_BDIR=$GMOCK_STATIC_BDIR
fi
mkdir -p $GMOCK_BDIR
pushd $GMOCK_BDIR
rm -rf CMakeCache.txt CMakeFiles/
CXXFLAGS="$EXTRA_CXXFLAGS $EXTRA_LDFLAGS $EXTRA_LIBS" \
cmake \
-DCMAKE_BUILD_TYPE=Debug \
-DCMAKE_POSITION_INDEPENDENT_CODE=On \
-DBUILD_SHARED_LIBS=$SHARED \
$GMOCK_SOURCE
make -j$PARALLEL
popd
done
echo Installing gmock...
cp -a $GMOCK_SHARED_BDIR/libgmock.$DYLIB_SUFFIX $PREFIX/lib/
cp -a $GMOCK_STATIC_BDIR/libgmock.a $PREFIX/lib/
rsync -av $GMOCK_SOURCE/include/ $PREFIX/include/
rsync -av $GMOCK_SOURCE/gtest/include/ $PREFIX/include/
}
build_protobuf() {
PROTOBUF_BDIR=$TP_BUILD_DIR/$PROTOBUF_NAME$MODE_SUFFIX
mkdir -p $PROTOBUF_BDIR
pushd $PROTOBUF_BDIR
CFLAGS="$EXTRA_CFLAGS" \
CXXFLAGS="$EXTRA_CXXFLAGS" \
LDFLAGS="$EXTRA_LDFLAGS" \
LIBS="$EXTRA_LIBS" \
$PROTOBUF_SOURCE/configure \
--with-pic \
--enable-shared \
--enable-static \
--prefix=$PREFIX
fixup_libtool
make -j$PARALLEL install
popd
}
build_snappy() {
SNAPPY_BDIR=$TP_BUILD_DIR/$SNAPPY_NAME$MODE_SUFFIX
mkdir -p $SNAPPY_BDIR
pushd $SNAPPY_BDIR
CFLAGS="$EXTRA_CFLAGS" \
CXXFLAGS="$EXTRA_CXXFLAGS" \
LDFLAGS="$EXTRA_LDFLAGS" \
LIBS="$EXTRA_LIBS" \
$SNAPPY_SOURCE/configure \
--with-pic \
--prefix=$PREFIX
fixup_libtool
make -j$PARALLEL install
popd
}
build_zlib() {
ZLIB_BDIR=$TP_BUILD_DIR/$ZLIB_NAME$MODE_SUFFIX
mkdir -p $ZLIB_BDIR
pushd $ZLIB_BDIR
# It doesn't appear possible to isolate source and build directories, so just
# prepopulate the latter using the former.
rsync -av --delete $ZLIB_SOURCE/ .
CFLAGS="$EXTRA_CFLAGS -fPIC" \
./configure \
--prefix=$PREFIX
make -j$PARALLEL install
popd
}
build_lz4() {
LZ4_BDIR=$TP_BUILD_DIR/$LZ4_NAME$MODE_SUFFIX
mkdir -p $LZ4_BDIR
pushd $LZ4_BDIR
CFLAGS="$EXTRA_CFLAGS" \
cmake \
-DCMAKE_BUILD_TYPE=release \
-DBUILD_TOOLS=0 \
-DCMAKE_INSTALL_PREFIX:PATH=$PREFIX \
$LZ4_SOURCE/cmake_unofficial
make -j$PARALLEL install
popd
}
build_bitshuffle() {
BITSHUFFLE_BDIR=$TP_BUILD_DIR/$BITSHUFFLE_NAME$MODE_SUFFIX
mkdir -p $BITSHUFFLE_BDIR
pushd $BITSHUFFLE_BDIR
# bitshuffle depends on lz4, therefore set the flag I$PREFIX/include
${CC:-gcc} $EXTRA_CFLAGS -std=c99 -I$PREFIX/include -O3 -DNDEBUG -fPIC -c \
"$BITSHUFFLE_SOURCE/src/bitshuffle_core.c" \
"$BITSHUFFLE_SOURCE/src/bitshuffle.c" \
"$BITSHUFFLE_SOURCE/src/iochain.c"
ar rs bitshuffle.a bitshuffle_core.o bitshuffle.o iochain.o
cp bitshuffle.a $PREFIX/lib/
cp $BITSHUFFLE_SOURCE/src/bitshuffle.h $PREFIX/include/bitshuffle.h
cp $BITSHUFFLE_SOURCE/src/bitshuffle_core.h $PREFIX/include/bitshuffle_core.h
popd
}
build_libev() {
LIBEV_BDIR=$TP_BUILD_DIR/$LIBEV_NAME$MODE_SUFFIX
mkdir -p $LIBEV_BDIR
pushd $LIBEV_BDIR
CFLAGS="$EXTRA_CFLAGS" \
CXXFLAGS="$EXTRA_CXXFLAGS" \
$LIBEV_SOURCE/configure \
--with-pic \
--prefix=$PREFIX
make -j$PARALLEL install
popd
}
build_rapidjson() {
# just installing it into our prefix
pushd $RAPIDJSON_SOURCE
rsync -av --delete $RAPIDJSON_SOURCE/include/rapidjson/ $PREFIX/include/rapidjson/
popd
}
build_squeasel() {
# Mongoose's Makefile builds a standalone web server, whereas we just want
# a static lib
SQUEASEL_BDIR=$TP_BUILD_DIR/$SQUEASEL_NAME$MODE_SUFFIX
mkdir -p $SQUEASEL_BDIR
pushd $SQUEASEL_BDIR
${CC:-gcc} $EXTRA_CFLAGS -std=c99 -O3 -DNDEBUG -fPIC -c "$SQUEASEL_SOURCE/squeasel.c"
ar rs libsqueasel.a squeasel.o
cp libsqueasel.a $PREFIX/lib/
cp $SQUEASEL_SOURCE/squeasel.h $PREFIX/include/
popd
}
build_curl() {
# Configure for a very minimal install - basically only HTTP, since we only
# use this for testing our own HTTP endpoints at this point in time.
CURL_BDIR=$TP_BUILD_DIR/$CURL_NAME$MODE_SUFFIX
mkdir -p $CURL_BDIR
pushd $CURL_BDIR
$CURL_SOURCE/configure \
--prefix=$PREFIX \
--disable-dict \
--disable-file \
--disable-ftp \
--disable-gopher \
--disable-imap \
--disable-ipv6 \
--disable-ldap \
--disable-ldaps \
--disable-manual \
--disable-pop3 \
--disable-rtsp \
--disable-smtp \
--disable-telnet \
--disable-tftp \
--without-librtmp \
--without-ssl
make -j$PARALLEL install
popd
}
build_crcutil() {
CRCUTIL_BDIR=$TP_BUILD_DIR/$CRCUTIL_NAME$MODE_SUFFIX
mkdir -p $CRCUTIL_BDIR
pushd $CRCUTIL_BDIR
# The autogen.sh script makes it difficult to isolate source and build
# directories, so just prepopulate the latter using the former.
rsync -av --delete $CRCUTIL_SOURCE/ .
./autogen.sh
CFLAGS="$EXTRA_CFLAGS" \
CXXFLAGS="$EXTRA_CXXFLAGS" \
LDFLAGS="$EXTRA_LDFLAGS" \
LIBS="$EXTRA_LIBS" \
./configure \
--prefix=$PREFIX
fixup_libtool
make -j$PARALLEL install
popd
}
build_cpplint() {
# Copy cpplint tool into bin directory
cp $GSG_SOURCE/cpplint/cpplint.py $PREFIX/bin/cpplint.py
}
build_gcovr() {
# Copy gcovr tool into bin directory
cp -a $GCOVR_SOURCE/scripts/gcovr $PREFIX/bin/gcovr
}
build_trace_viewer() {
echo Installing trace-viewer into the www directory
cp -a $TRACE_VIEWER_SOURCE/* $TP_DIR/../www/
}
build_nvml() {
NVML_BDIR=$TP_BUILD_DIR/$NVML_NAME$MODE_SUFFIX
mkdir -p $NVML_BDIR
pushd $NVML_BDIR
# It doesn't appear possible to isolate source and build directories, so just
# prepopulate the latter using the former.
rsync -av --delete $NVML_SOURCE/ .
cd src/
# The embedded jemalloc build doesn't pick up the EXTRA_CFLAGS environment
# variable, so we have to stick our flags into this config file.
if ! grep -q -e "$EXTRA_CFLAGS" jemalloc/jemalloc.cfg ; then
perl -p -i -e "s,(EXTRA_CFLAGS=\"),\$1$EXTRA_CFLAGS ," jemalloc/jemalloc.cfg
fi
for LIB in libvmem libpmem libpmemobj; do
# Disable -Werror; it prevents jemalloc from building via clang.
#
# Add PREFIX/lib to the rpath; libpmemobj depends on libpmem at runtime.
EXTRA_CFLAGS="$EXTRA_CFLAGS -Wno-error" \
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-rpath,$PREFIX/lib" \
make -j$PARALLEL $LIB DEBUG=0
# NVML doesn't allow configuring PREFIX -- it always installs into
# DESTDIR/usr/lib. Additionally, the 'install' target builds all of
# the NVML libraries, even though we only need the three libraries above.
# So, we manually install the built artifacts.
cp -a $NVML_BDIR/src/include/$LIB.h $PREFIX/include
cp -a $NVML_BDIR/src/nondebug/$LIB.{so*,a} $PREFIX/lib
done
popd
}
build_boost() {
# This is a header-only installation of Boost.
rsync -a --delete $BOOST_SOURCE/boost $PREFIX/include
}