Replies: 2 comments 2 replies
-
I also meet this problem,have you solved it? |
Beta Was this translation helpful? Give feedback.
2 replies
-
Hi, the documentation of the federate building process is indeed outdated. However, I've found an old version of #!/usr/bin/env bash
(cd .. && make config=debug clean && make config=debug)
if [ ! -f "./federate_dbg" ] && [ -f "../bin/Debug/omnetpp-federate" ]; then
ln -s "../bin/Debug/omnetpp-federate" "federate_dbg"
fi
if [ ! -f "./federate" ] && [ -f "../bin/Debug/omnetpp-federate" ]; then
ln -s "../bin/Debug/omnetpp-federate" "federate"
fi
if [ ! -f "./libINET_dbg.so" ]; then
ln -s "../../inet_src/src/libINET_dbg.so" "libINET_dbg.so"
fi I do not know if this script still works. Right now we are working on improving the building process and documentation, but this still will take a bit of time. If you find any helpful advice for the community (e.g. if this script actually works) please spread it :) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello all,
I'm trying to rebuild Omnet Federate following this tutorial: https://www.eclipse.org/mosaic/docs/extending_mosaic/omnetpp_details/.
But when I need to specify the location of rebuild, the indicated path in the tutorial is "federate/rebuild_federate.sh", but this file doesn't exist in Federate directory. I searched in all of Omnet Federate folders, but I didn't find. Anybody knows when I can find this file?
Beta Was this translation helpful? Give feedback.
All reactions