Update datapipes rev

This commit is contained in:
WolverinDEV 2019-07-02 14:19:47 +02:00
parent 922fca1a68
commit 77df75de0f
3 changed files with 12 additions and 4 deletions

View File

@ -1,6 +1,6 @@
Update/initialize git submodules (Using the refs given!):
#Update the module
git submodule update --init --recursive
git submodule update --init --recursive -f
#Resetting local made changes
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 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
# 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
aptitude install build-essential
wget ftp://ftp.fu-berlin.de/unix/languages/gcc/releases/gcc-9.1.0/gcc-9.1.0.tar.gz

@ -1 +1 @@
Subproject commit cd92046ec1a91fa6b904427afeda840fab4cc338
Subproject commit 025f955ee50bd057a8f6a3f67c7b6eda7834b4fa

View File

@ -25,6 +25,6 @@ check_err_exit ${library_path} "Failed to build srtp!"
check_err_exit ${library_path} "Failed to build sdptransform!"
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!"
set_build_successful ${library_path}