Skip to content

Commit

Permalink
inet.py: removed omnetpp versions from dependencies in inet-3.4.0
Browse files Browse the repository at this point in the history
inet 3.4.0 with omnetpp-5.0.*: cannot build. error: use of undeclared identifier 'cResultFilterType'; did you mean 'cResultFilter'?
  • Loading branch information
adamgeorge309 committed Apr 30, 2024
1 parent ea9efd2 commit 69c2b7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions opp_env/database/inet.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def make_inet_project_description(inet_version, omnetpp_versions):
"smoke_test_commands": [
"cd examples/adhoc/ieee80211",
"""if [ "$mode" = "debug" ]; then DBG_SUFFIX="_dbg"; fi""",
"./run -c Ping1 -u Cmdenv --sim-time-limit=60s >/dev/null" if inet_version < "4.0" else
"./run -c Ping1 -u Cmdenv --sim-time-limit=60s --check-signals=false > /dev/null" if inet_version < "4.0" else
"inet$DBG_SUFFIX -c Ping1 -u Cmdenv --sim-time-limit=60s >/dev/null"
],
"options": {
Expand Down Expand Up @@ -218,7 +218,7 @@ def get_all_inet_released_versions():
["3.6.0", ["5.1.*"]], # with omnetpp-5.2: Ieee80211ControlInfoDescr.h:16:6: error: Version mismatch! Probably this file was generated by an earlier version of nedtool
["3.5.x", ["5.1.*"]],
["3.5.0", ["5.1.*"]],
["3.4.0", ["5.1.*", "5.0.*"]],
["3.4.0", ["5.1.*"]], # with omnetpp-5.0.*: cannot build. error: use of undeclared identifier 'cResultFilterType'; did you mean 'cResultFilter'?
["3.3.0", ["4.6.*", "5.0.*", "5.1.*"]], # with omnetpp-5.2.1: RoutingTableRecorder.cc:296:37: error: expected ')' (due to missing INT64_PRINTF_FORMAT symbol?)
["3.2.4", ["4.6.*", "5.0.*", "5.1.*"]], # # with omnetpp-5.2.1: RoutingTableRecorder.cc:296:37: error: expected ')' (due to missing INT64_PRINTF_FORMAT symbol?)
["3.2.3", ["4.6.*"]], # with omnetpp-5.0: Ieee80211OldMac.cc:38:21: error: no member named 'Ieee80211OldMac' in namespace 'inet'; MAYBE Register_Enum issue?
Expand Down

0 comments on commit 69c2b7b

Please sign in to comment.