-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
clangとlibstd++の組み合わせによるコンパイルエラー回避パッチ作成 Signed-off-by: Zenichi Amano <[email protected]>
- Loading branch information
1 parent
12d6532
commit 86c8211
Showing
10 changed files
with
57 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/src/modules/congestion_controller/goog_cc/loss_based_bwe_v2.h b/src/modules/congestion_controller/goog_cc/loss_based_bwe_v2.h | ||
index 425ca2a0c8..b45c6dd777 100644 | ||
--- a/src/modules/congestion_controller/goog_cc/loss_based_bwe_v2.h | ||
+++ b/src/modules/congestion_controller/goog_cc/loss_based_bwe_v2.h | ||
@@ -121,6 +121,7 @@ class LossBasedBweV2 { | ||
double hold_duration_factor = 0.0; | ||
bool use_byte_loss_rate = false; | ||
TimeDelta padding_duration = TimeDelta::Zero(); | ||
+ Config() { } | ||
}; | ||
|
||
struct Derivatives { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/sh | ||
|
||
set -ex | ||
|
||
export DEBIAN_FRONTEND=noninteractive | ||
|
||
apt-get remove -y gcc | ||
apt-get autoremove | ||
|
||
apt-get update --fix-missing | ||
apt-get upgrade -y | ||
|
||
apt-get install -y \ | ||
binutils \ | ||
cmake \ | ||
curl \ | ||
git \ | ||
lsb-release \ | ||
make \ | ||
pkg-config \ | ||
python3 \ | ||
rsync \ | ||
sudo \ | ||
unzip \ | ||
xz-utils | ||
|