Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
29281 Discussions

fatal error LNK1000: Internal error during BuildImage

cfann61
Beginner
2,353 Views
Mixed language solution, Fortran/C++. When I build the solution and direct the output( two .dll files ) to one file folder, it builds successfully. When I try to build in another folder, which is inside of the previous folder, I get the build error

fatal error LNK1000: Internal error during BuildImage

Thanks

Chris
0 Kudos
1 Solution
Steven_L_Intel1
Employee
2,353 Views

My advice is to never set the output of two different projects to the same folder - this can cause all sorts of build problems. Instead, add a post-build step to copy the DLL to some other location (say, the project folder of the executable project). You may be running into an issue with Visual Studio trying to build two projects in parallel.

Does this help?

View solution in original post

0 Kudos
2 Replies
Steven_L_Intel1
Employee
2,354 Views

My advice is to never set the output of two different projects to the same folder - this can cause all sorts of build problems. Instead, add a post-build step to copy the DLL to some other location (say, the project folder of the executable project). You may be running into an issue with Visual Studio trying to build two projects in parallel.

Does this help?

0 Kudos
cfann61
Beginner
2,353 Views
Steve,
That does help, I was just trying to take a short cut. Thank you.

0 Kudos
Reply