Strange output in Visual Studio in Release Mode

Provide easy-to-use, extensible software for modeling, simulating, controlling, and analyzing the neuromusculoskeletal system.
POST REPLY
User avatar
Kaiwen Yang
Posts: 45
Joined: Mon Sep 03, 2018 11:25 am

Strange output in Visual Studio in Release Mode

Post by Kaiwen Yang » Tue Oct 22, 2019 3:18 am

Hi,

I built OpenSim under Release mode in Visual Studio. "ALL_BUILD" Success, "RUN_TEST" all passed and "RUN_TESTS_PARALLEL" all passed. However, when I run "testJointReaction.cpp" I got some strange message in the output window (See "Output.txt"). And I got an error code E0070 "incomplete type is not allowed".

I am very new to this ...What did I miss here?

Kaiwen
Attachments
Output.txt
(10.64 KiB) Downloaded 6 times
Microsoft Visual Studio Debug Console.txt
(9.72 KiB) Downloaded 4 times

Tags:

User avatar
Thomas Uchida
Posts: 1800
Joined: Wed May 16, 2012 11:40 am

Re: Strange output in Visual Studio in Release Mode

Post by Thomas Uchida » Tue Oct 22, 2019 10:36 pm

According to https://software.intel.com/es-es/comment/1827828, "You get the warning only when you use a debug configuration and one of the libraries linked does not contain debug information" so perhaps you built OpenSim in Release mode but are running a test in Debug mode? This thread on Stack Overflow may also be helpful: https://stackoverflow.com/questions/193 ... 2012-upgra.

POST REPLY