Difference between revisions of "Open5gs: Compile"
Jump to navigation
Jump to search
Line 12: | Line 12: | ||
meson build --prefix=`pwd`/install | meson build --prefix=`pwd`/install | ||
ninja -C build | ninja -C build | ||
+ | |||
+ | Cek apakah Compile Sudah Benar | ||
+ | ./build/tests/registration/registration | ||
+ | |||
+ | cd build | ||
+ | meson test -v | ||
+ | |||
+ | cd build | ||
+ | ninja install | ||
+ | cd ../ |
Revision as of 10:03, 26 October 2022
Install Dependencies
sudo apt install python3-pip python3-setuptools python3-wheel ninja-build build-essential flex bison git libsctp-dev libgnutls28-dev libgcrypt-dev libssl-dev libidn11-dev libmongoc-dev libbson-dev libyaml-dev libnghttp2-dev libmicrohttpd-dev libcurl4-gnutls-dev libnghttp2-dev libtins-dev libtalloc-dev meson
Clone Dari Source
git clone https://github.com/open5gs/open5gs
Compile pakai Meson
cd open5gs meson build --prefix=`pwd`/install ninja -C build
Cek apakah Compile Sudah Benar
./build/tests/registration/registration
cd build meson test -v
cd build ninja install cd ../