Commit c88284da authored by Cedric Roux's avatar Cedric Roux

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
...@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment