X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=ntsimulator%2Fdeploy%2Fbase%2Fbuild_ntsim-ng.sh;h=e93ff5b78a097e6e8ba5cda7d778d3744c30de0c;hb=caec2fcb18e829420672509fe5e356b48d0c3840;hp=dbabaabc47d2bb8ade51fd5567154656002c54cb;hpb=f1d5c9198acde7a7ce296490087cad37e008f688;p=sim%2Fo1-interface.git diff --git a/ntsimulator/deploy/base/build_ntsim-ng.sh b/ntsimulator/deploy/base/build_ntsim-ng.sh index dbabaab..e93ff5b 100755 --- a/ntsimulator/deploy/base/build_ntsim-ng.sh +++ b/ntsimulator/deploy/base/build_ntsim-ng.sh @@ -18,23 +18,36 @@ # ***************************************************************************/ files=( + "core/container.c" "core/context.c" "core/docker.c" "core/framework.c" "core/test.c" "core/session.c" "core/nc_config.c" + "core/app/supervisor.c" + "core/app/app_common.c" "core/app/manager.c" + "core/app/manager_context.c" "core/app/manager_operations.c" + "core/app/manager_actions.c" + "core/app/manager_sysrepo.c" "core/app/network_function.c" + "core/app/nf_oran_du.c" + "core/app/blank.c" "core/datastore/schema.c" + "core/datastore/operations.c" "core/datastore/populate.c" - "core/datastore/populate_rec.c" + "core/datastore/populate_aux.c" + "core/datastore/populate_late_resolve.c" + "core/datastore/populate_recursive.c" + "core/datastore/populate_validation.c" "core/faults/faults.c" "core/faults/faults_counters.c" "core/faults/faults_processing.c" "core/faults/faults_logic.c" "core/faults/faults_ves.c" + "utils/debug_utils.c" "utils/log_utils.c" "utils/rand_utils.c" "utils/type_utils.c" @@ -42,11 +55,13 @@ files=( "utils/http_client.c" "utils/nts_utils.c" "utils/nc_client.c" + "utils/network_emulation.c" "features/ves_pnf_registration/ves_pnf_registration.c" "features/ves_heartbeat/ves_heartbeat.c" "features/ves_file_ready/ves_file_ready.c" - "features/netconf_call_home/netconf_call_home.c" "features/manual_notification/manual_notification.c" + "features/netconf_call_home/netconf_call_home.c" + "features/web_cut_through/web_cut_through.c" "main.c" ) @@ -76,6 +91,9 @@ done output="ntsim-ng" build="gcc -Wall -pedantic -Isource $sources $libraries -o$output" +if [[ -n "${BUILD_WITH_DEBUG}" ]]; then + build="gcc -g -Wall -pedantic -Isource $sources $libraries -o$output" +fi echo "Building with command: $build" $build