Update datapipes rev
This commit is contained in:
parent
922fca1a68
commit
77df75de0f
12
helper.txt
12
helper.txt
@ -1,6 +1,6 @@
|
|||||||
Update/initialize git submodules (Using the refs given!):
|
Update/initialize git submodules (Using the refs given!):
|
||||||
#Update the module
|
#Update the module
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive -f
|
||||||
#Resetting local made changes
|
#Resetting local made changes
|
||||||
git submodule foreach git reset --hard
|
git submodule foreach git reset --hard
|
||||||
|
|
||||||
@ -26,9 +26,17 @@ echo "deb http://archive.debian.org/debian/ wheezy main contrib non-free" > /etc
|
|||||||
|
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install aptitude
|
apt-get install aptitude
|
||||||
aptitude install sudo git wget curl python-software-properties realpath
|
aptitude install sudo wget curl python-software-properties realpath autoconf libz-dev gettext libcurl4-openssl-dev
|
||||||
apt-get install golang-go #For boringssl
|
apt-get install golang-go #For boringssl
|
||||||
|
|
||||||
|
# Install git 2.X
|
||||||
|
wget https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.20.0.tar.gz
|
||||||
|
tar xvf git-2.20.0.tar.gz
|
||||||
|
make configure
|
||||||
|
./configure --prefix=/usr --with-openssl
|
||||||
|
make -j 12
|
||||||
|
sudo make install
|
||||||
|
|
||||||
# Setup GCC-9 from source
|
# Setup GCC-9 from source
|
||||||
aptitude install build-essential
|
aptitude install build-essential
|
||||||
wget ftp://ftp.fu-berlin.de/unix/languages/gcc/releases/gcc-9.1.0/gcc-9.1.0.tar.gz
|
wget ftp://ftp.fu-berlin.de/unix/languages/gcc/releases/gcc-9.1.0/gcc-9.1.0.tar.gz
|
||||||
|
2
third_party/DataPipes
vendored
2
third_party/DataPipes
vendored
@ -1 +1 @@
|
|||||||
Subproject commit cd92046ec1a91fa6b904427afeda840fab4cc338
|
Subproject commit 025f955ee50bd057a8f6a3f67c7b6eda7834b4fa
|
2
third_party/build_datapipes.sh
vendored
2
third_party/build_datapipes.sh
vendored
@ -25,6 +25,6 @@ check_err_exit ${library_path} "Failed to build srtp!"
|
|||||||
check_err_exit ${library_path} "Failed to build sdptransform!"
|
check_err_exit ${library_path} "Failed to build sdptransform!"
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
cmake_build ${library_path} -DCrypto_ROOT_DIR="`pwd`/boringssl/" -DCRYPTO_TYPE="boringssl" -DCMAKE_CXX_FLAGS="-fPIC -static-libgcc -static-libstdc++" -DBUILD_TESTS=OFF -DCMAKE_C_FLAGS="-fPIC"
|
cmake_build ${library_path} -DCrypto_ROOT_DIR="`pwd`/boringssl/" -DCRYPTO_TYPE="boringssl" -DCMAKE_CXX_FLAGS="-fPIC -static-libgcc -static-libstdc++" -DBUILD_TESTS=OFF -DCMAKE_C_FLAGS="-fPIC" -DBUILD_WEBRTC=OFF
|
||||||
check_err_exit ${library_path} "Failed to build DataPipes!"
|
check_err_exit ${library_path} "Failed to build DataPipes!"
|
||||||
set_build_successful ${library_path}
|
set_build_successful ${library_path}
|
Loading…
Reference in New Issue
Block a user