Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

error C1854: cannot overwrite information formed during creation of the precompiled header in object file

foo.cpp(33918) : fatal error C1854: cannot overwrite information formed  during creation of the precompiled header in object file: 'c:\somepath\foo.obj' 

Consulting MSDN about this gives me the following information:

You specified the /Yu (use precompiled header) option after specifying the /Yc (create precompiled header) option for the same file. Certain declarations (such as declarations including __declspec dllexport) make this invalid.

We are using dllexport and precompiled headers in this case. Have anyone encountered this before and know of any workaround? Any input to shed some light on this problem is greatly appreciated.

Thanks

like image 602
ralphtheninja Avatar asked Jun 03 '09 12:06

ralphtheninja


2 Answers

I think you can find the answer here: http://social.msdn.microsoft.com/forums/en-US/vclanguage/thread/b3aa10fa-141b-4a03-934c-7e463f92b2a5/

Basically, you need to set the stdafx.cpp file to "Create Precompiled Headers" and all the other .cpp files to "Use Precompiled Headers"

like image 151
cspirz Avatar answered Sep 22 '22 01:09

cspirz


I had this problem too.

Make sure the precompiler header output file is set to the correct location. Mine was actually outputted to the right location, but there were problems reading it just because the path had a little artifact inside.

like image 38
Tony Avatar answered Sep 21 '22 01:09

Tony