Osmocom Base Transceiver Station (BTS)
https://osmocom.org/projects/osmobts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
515 B
25 lines
515 B
#!/bin/sh |
|
# jenkins build helper script for osmo-bts-trx |
|
|
|
# shellcheck source=contrib/jenkins_common.sh |
|
. $(dirname "$0")/jenkins_common.sh |
|
|
|
export PKG_CONFIG_PATH="$inst/lib/pkgconfig:$PKG_CONFIG_PATH" |
|
export LD_LIBRARY_PATH="$inst/lib" |
|
|
|
osmo-build-dep.sh libosmocore "" --disable-doxygen |
|
|
|
osmo-build-dep.sh libosmo-abis |
|
|
|
cd "$deps" |
|
|
|
configure_flags="\ |
|
--enable-sanitize \ |
|
--enable-werror \ |
|
--enable-trx \ |
|
--enable-external-tests \ |
|
" |
|
|
|
build_bts "osmo-bts-trx" "$configure_flags" |
|
|
|
osmo-clean-workspace.sh
|
|
|