Skip to content

Commit 10f78e1

Browse files
committed
Support selective build configs via cli
1 parent 94f7cc2 commit 10f78e1

File tree

3 files changed

+27
-20
lines changed

3 files changed

+27
-20
lines changed

build.sh

+6-3
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,15 @@ OPTIONS:
2424
-c TARGET CPU The target cpu for cross-compilation. Default is 'x64'. Other values can be 'x86', 'arm64', 'arm'.
2525
-l BLACKLIST List *.o objects to exclude from the static library.
2626
-e ENABLE_RTTI Compile WebRTC with RTII enabled. Default is '1'.
27+
-n CONFIGS Build configurations, space-separated. Default is 'Debug Release'. Other values can be 'Debug', 'Release'.
2728
-x Express build mode. Skip repo sync and dependency checks, just build, compile and package.
2829
-D [Linux] Generate a debian package
2930
-d Debug mode. Print all executed commands.
3031
-h Show this message
3132
EOF
3233
}
3334

34-
while getopts :o:b:r:t:c:l:e:xDd OPTION; do
35+
while getopts :o:b:r:t:c:l:e:n:xDd OPTION; do
3536
case $OPTION in
3637
o) OUTDIR=$OPTARG ;;
3738
b) BRANCH=$OPTARG ;;
@@ -40,6 +41,7 @@ while getopts :o:b:r:t:c:l:e:xDd OPTION; do
4041
c) TARGET_CPU=$OPTARG ;;
4142
l) BLACKLIST=$OPTARG ;;
4243
e) ENABLE_RTTI=$OPTARG ;;
44+
n) CONFIGS=$OPTARG ;;
4345
x) BUILD_ONLY=1 ;;
4446
D) PACKAGE_AS_DEBIAN=1 ;;
4547
d) DEBUG=1 ;;
@@ -56,6 +58,7 @@ ENABLE_CLANG=0
5658
ENABLE_STATIC_LIBS=1
5759
BUILD_ONLY=${BUILD_ONLY:-0}
5860
DEBUG=${DEBUG:-0}
61+
CONFIGS=${CONFIGS:-Debug Release}
5962
COMBINE_LIBRARIES=${COMBINE_LIBRARIES:-1}
6063
PACKAGE_AS_DEBIAN=${PACKAGE_AS_DEBIAN:-0}
6164
PACKAGE_FILENAME_PATTERN=${PACKAGE_FILENAME_PATTERN:-"webrtc-%rn%-%sr%-%to%-%tc%"}
@@ -111,15 +114,15 @@ if [ $BUILD_ONLY = 0 ]; then
111114
fi
112115

113116
echo Compiling WebRTC
114-
compile $PLATFORM $OUTDIR "$TARGET_OS" "$TARGET_CPU" "$BLACKLIST"
117+
compile $PLATFORM $OUTDIR "$TARGET_OS" "$TARGET_CPU" "$CONFIGS" "$BLACKLIST"
115118

116119
# Default PACKAGE_FILENAME is <projectname>-<rev-number>-<short-rev-sha>-<target-os>-<target-cpu>
117120
PACKAGE_FILENAME=$(interpret-pattern "$PACKAGE_FILENAME_PATTERN" "$PLATFORM" "$OUTDIR" "$TARGET_OS" "$TARGET_CPU" "$BRANCH" "$REVISION" "$REVISION_NUMBER")
118121
PACKAGE_NAME=$(interpret-pattern "$PACKAGE_NAME_PATTERN" "$PLATFORM" "$OUTDIR" "$TARGET_OS" "$TARGET_CPU" "$BRANCH" "$REVISION" "$REVISION_NUMBER")
119122
PACKAGE_VERSION=$(interpret-pattern "$PACKAGE_VERSION_PATTERN" "$PLATFORM" "$OUTDIR" "$TARGET_OS" "$TARGET_CPU" "$BRANCH" "$REVISION" "$REVISION_NUMBER")
120123

121124
echo "Packaging WebRTC: $PACKAGE_FILENAME"
122-
package::prepare $PLATFORM $OUTDIR $PACKAGE_FILENAME $DIR/resource $REVISION_NUMBER
125+
package::prepare $PLATFORM $OUTDIR $PACKAGE_FILENAME $DIR/resource "$CONFIGS" $REVISION_NUMBER
123126
if [ "$PACKAGE_AS_DEBIAN" = 1 ]; then
124127
package::debian $OUTDIR $PACKAGE_FILENAME $PACKAGE_NAME $PACKAGE_VERSION "$(debian-arch $TARGET_CPU)"
125128
else

circle.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ dependencies:
88
- sudo update-alternatives --install /usr/bin/ld ld /usr/lib/binutils-2.26/bin/ld 90
99
test:
1010
override:
11-
- ./build.sh
11+
- ./build.sh -n Release
1212
- cd out; tar -xvzf *.tar.gz; cd -
1313
- test/run_tests.sh $(ls -d -1 out/webrtc*/)

util.sh

+20-16
Original file line numberDiff line numberDiff line change
@@ -406,10 +406,12 @@ function compile() {
406406
local outdir="$2"
407407
local target_os="$3"
408408
local target_cpu="$4"
409+
local configs="$5"
409410
local blacklist="$5"
410411

411412
# Set default default common and target args.
412413
# `rtc_include_tests=false`: Disable all unit tests
414+
# `treat_warnings_as_errors=false`: Don't error out on compiler warnings
413415
local common_args="rtc_include_tests=false treat_warnings_as_errors=false"
414416
local target_args="target_os=\"$target_os\" target_cpu=\"$target_cpu\""
415417

@@ -434,24 +436,24 @@ function compile() {
434436
# like the clang compiled libraries, so the option is there.
435437
# Set `is_clang=false` and `use_sysroot=false` to build using gcc.
436438
if [ $ENABLE_CLANG = 0 ]; then
437-
target_args+=" is_clang=false"
438-
[ $platform = 'linux' ] && target_args+=" use_sysroot=false linux_use_bundled_binutils=false use_custom_libcxx=false use_custom_libcxx_for_host=false"
439+
common_args+=" is_clang=false"
440+
[ $platform = 'linux' ] && common_args+=" use_sysroot=false linux_use_bundled_binutils=false use_custom_libcxx=false use_custom_libcxx_for_host=false"
439441
fi
440442

441443
pushd $outdir/src >/dev/null
442-
compile::ninja "out/$TARGET_CPU/Debug" "$common_args $target_args is_debug=true"
443-
compile::ninja "out/$TARGET_CPU/Release" "$common_args $target_args is_debug=false strip_debug_info=true symbol_level=0"
444+
for cfg in $configs; do
445+
[ "$cfg" = 'Release' ] && common_args+=' is_debug=false strip_debug_info=true symbol_level=0'
446+
compile::ninja "out/$target_cpu/$cfg" "$common_args $target_args"
444447

445-
if [ $COMBINE_LIBRARIES = 1 ]; then
446-
# Method 2: Merge the static .a/.lib libraries.
447-
combine::static $platform "out/$TARGET_CPU/Debug" libwebrtc_full
448-
combine::static $platform "out/$TARGET_CPU/Release" libwebrtc_full
449-
450-
# Method 2: Merge .o/.obj objects to create the library, although results
451-
# have been inconsistent so the static merging method is default.
452-
# combine::objects $platform "out/$TARGET_CPU/Debug" libwebrtc_full
453-
# combine::objects $platform "out/$TARGET_CPU/Release" libwebrtc_full
454-
fi
448+
if [ $COMBINE_LIBRARIES = 1 ]; then
449+
# Method 1: Merge the static .a/.lib libraries.
450+
combine::static $platform "out/$target_cpu/$cfg" libwebrtc_full
451+
452+
# Method 2: Merge .o/.obj objects to create the library, although results
453+
# have been inconsistent so the static merging method is default.
454+
# combine::objects $platform "out/$target_cpu/$cfg" libwebrtc_full
455+
fi
456+
done
455457
popd >/dev/null
456458
}
457459

@@ -461,13 +463,15 @@ function compile() {
461463
# $2: The output directory.
462464
# $3: The package filename.
463465
# $4: The project's resource dirctory.
466+
# $5: The build configurations.
467+
# $6: The revision number.
464468
function package::prepare() {
465469
local platform="$1"
466470
local outdir="$2"
467471
local package_filename="$3"
468472
local resource_dir="$4"
469-
local revision_number="$5"
470-
local configs="Debug Release"
473+
local configs="$5"
474+
local revision_number="$6"
471475

472476
if [ $platform = 'mac' ]; then
473477
CP='gcp'

0 commit comments

Comments
 (0)