3D program link error, help!

Started by
1 comment, last by renqilin 21 years, 4 months ago
in my 3D program i wrote this code: CDirect3D::SetupCamera(void) { D3DXMATRIX matProj; D3DMatrixPerspectiveFovLH(&matProj, D3DX_PI / 4, 1.0f, 1.0f, 500.0f); // if i discard this function, it will link succesful. // Other codes... } when i build this 3D class, it passed compile, but during linking the comiler show an error: linking... LINK: error: Internal error during Pass1 Error execting link.exe Tool execution canceled by user. can somebody tell me how to solve this problem?
Advertisement
Hm, not a lot of information there. I assume you''re #including d3dx8.h and have all the proper libraries and stuff.

I used to get that error a lot when I tried to build off of a ZIP disk. VC++ would generate enough intermediary data to fill up the disk, and link.exe wouldn''t know how to properly report the error.

Sorry, that''s all I got.
---blahpers
Thanks. but i am not using ZIP disk.......

This topic is closed to new replies.

Advertisement