Visual Studio_fatal error C1083: Cannot open compiler generated file 경고 오류 해결

Fatal Error C1083 오류

 [source file name] : fatal error C1083 : Cannot open compiler generated file:[object file name] is generated.

Visual Studio에서 한 번에 여러 프로젝트를 컴파일 할 수 있기 때문에 발생하는 오류이다. 생성 된 솔루션에는 공통 파일을 사용하는 두 개의 프로젝트가 포함되어 있다. 컴파일러의 인스턴스가 동일한 파일을 동시에 참조하려 하는 경우가 일반적이다.


해결 방법

  • 각 응용 프로그램을 별도로 빌드한다.
  • Visual Studio를 구성하는 빌드 수를 1로 설정 한다.
  • .sln파일의 프로젝트간에 종속성을 추가한다.

참고자료

 

Why do I get "fatal error C1083: Cannot open compiler generated file" when using Visual Studio? | Data Distribution Service (DDS

Note: Applies to RTI Connext 4.x and above. When using Visual Studio to build the project files generated by rtiddsgen, you may see the following error message: [source file name]:fatal error C1083: Cannot open compiler generated file:[object file name] is

community.rti.com