@@ -406,10 +406,12 @@ function compile() {
406
406
local outdir=" $2 "
407
407
local target_os=" $3 "
408
408
local target_cpu=" $4 "
409
+ local configs=" $5 "
409
410
local blacklist=" $5 "
410
411
411
412
# Set default default common and target args.
412
413
# `rtc_include_tests=false`: Disable all unit tests
414
+ # `treat_warnings_as_errors=false`: Don't error out on compiler warnings
413
415
local common_args=" rtc_include_tests=false treat_warnings_as_errors=false"
414
416
local target_args=" target_os=\" $target_os \" target_cpu=\" $target_cpu \" "
415
417
@@ -434,24 +436,24 @@ function compile() {
434
436
# like the clang compiled libraries, so the option is there.
435
437
# Set `is_clang=false` and `use_sysroot=false` to build using gcc.
436
438
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"
439
441
fi
440
442
441
443
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 "
444
447
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
455
457
popd > /dev/null
456
458
}
457
459
@@ -461,13 +463,15 @@ function compile() {
461
463
# $2: The output directory.
462
464
# $3: The package filename.
463
465
# $4: The project's resource dirctory.
466
+ # $5: The build configurations.
467
+ # $6: The revision number.
464
468
function package::prepare() {
465
469
local platform=" $1 "
466
470
local outdir=" $2 "
467
471
local package_filename=" $3 "
468
472
local resource_dir=" $4 "
469
- local revision_number =" $5 "
470
- local configs= " Debug Release "
473
+ local configs =" $5 "
474
+ local revision_number= " $6 "
471
475
472
476
if [ $platform = ' mac' ]; then
473
477
CP=' gcp'
0 commit comments