|
Main /
OMNeT++ 4.xSee also: OMNeT++ 4.x documentation How To...
Java and Eclipse plug-in development
General
TutorialsDeveloping simulation models
Debugging C++ code
Debugging with Tkenv
Database integration
Parallel distributed simulation
Misc
Known Problems
Solution: This issue is tracked by http://dev.omnetpp.org/bugs/view.php?id=154 and happens when "application experience service" is disabled on a Windows 7 installation. See http://www.blackviper.com/wiki/Application_Experience for further details.
Solution: This is related to xulrunner (1.9 beta versions, possibly others); see https://bugs.eclipse.org/213194. xulrunner is part of Firefox; installing another version of Firefox (and making sure the wrong xulrunner version has been uninstalled!) should solve the problem. Resolved in 4.1
Solution: Close and re-open the project. This is likely an issue in CDT; we are investigating it. Resolved in 4.1
Solution: The value of the calculated fingerprint in a simulation is heavily dependent on the accuracy of the floating point arithmetic. There are differences between the floating point handling of AMD and Intel CPUs. By default GCC uses the i387 instruction set on intel processors and the SSE2 instruction set on AMD processors. Running under a processor emulator software like valgrind may also produce a different result. If your CPU supports SSE2 or later, add the -mfpmath=sse -msse2 options to CFLAGS_RELEASE and CFLAGS_DEBUG to get the same results on AMD, Intel and valgrind. See related bug report in valgrind: http://bugs.kde.org/show_bug.cgi?id=197915
|