0

I downloaded an openflow for OMNeT 5.5.1 and inet 3.6.6 from the following link: https://github.com/CoRE-RG/OpenFlow

When I build the project it could not create libopenflow_dbg.dll file, and it gives the following errors:

make[1]: *** [Makefile:164: ../out/clang-release/src/libopenflow.dll] Error 1

Baram
  • 19
  • 4

1 Answers1

0

The log shows that you try to build project in release mode. Therefore change the mode to debug (i.e. right-click on project and select Build Configuraions | Set Active | debug). Do the same for INET.

If errors will continue to occur set verbose output by opening Properties of the project | C/C++ Build | Behavior and in the Build field add V=1 at the end. Then build project, and go to the first error in the log, and insert this error in your question.

Jerzy D.
  • 6,707
  • 2
  • 16
  • 22