Skip to content
Snippets Groups Projects
Commit c88284da authored by Cédric Roux's avatar Cédric Roux
Browse files

bugfix: fix compilation of the basic simulator

We need to build the softmodem first, otherwise
compilation of the lib 'config' fails because
of the T tracer.
parent 07678191
No related branches found
No related tags found
No related merge requests found
...@@ -968,7 +968,8 @@ fi ...@@ -968,7 +968,8 @@ fi
{ {
cd $OPENAIR_DIR/cmake_targets/basic_simulator/enb cd $OPENAIR_DIR/cmake_targets/basic_simulator/enb
cmake . cmake .
make -j`nproc` coding params_libconfig tcp_bridge_oai lte-softmodem make -j`nproc` lte-softmodem
make -j`nproc` coding params_libconfig tcp_bridge_oai
ln -sf libtcp_bridge_oai.so liboai_device.so ln -sf libtcp_bridge_oai.so liboai_device.so
cd ../.. cd ../..
} > $dlog/basic_simulator_enb.txt 2>&1 } > $dlog/basic_simulator_enb.txt 2>&1
...@@ -1023,7 +1024,8 @@ fi ...@@ -1023,7 +1024,8 @@ fi
{ {
cd $OPENAIR_DIR/cmake_targets/basic_simulator/ue cd $OPENAIR_DIR/cmake_targets/basic_simulator/ue
cmake . cmake .
make -j`nproc` coding params_libconfig tcp_bridge_oai lte-uesoftmodem make -j`nproc` lte-uesoftmodem
make -j`nproc` coding params_libconfig tcp_bridge_oai
ln -sf libtcp_bridge_oai.so liboai_device.so ln -sf libtcp_bridge_oai.so liboai_device.so
cd ../.. cd ../..
} > $dlog/basic_simulator_ue.txt 2>&1 } > $dlog/basic_simulator_ue.txt 2>&1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment