digitalmars.D - bug or change in compiler options?
- David Medlock (5/5) Oct 27 2007 When I compile(any version before DMD 1.018) I typically add
- David Medlock (4/14) Oct 30 2007 I hate to be a pest but can anyone point me to why this is happening?
- torhu (7/23) Oct 30 2007 opengl32.lib doesn't come with dmd, so you need to get it from somewhere...
- Derek Parnell (14/25) Oct 30 2007 It might help us if we knew ...
- David Medlock (9/33) Oct 31 2007 I have both DMC and DMD installed on Z:.
When I compile(any version before DMD 1.018) I typically add opengl32.lib to the end of the link command. This works fine, but in versions later than 1.018 it cannot find the library to link. What changed or what am I missing? -David
Oct 27 2007
David Medlock wrote:When I compile(any version before DMD 1.018) I typically add opengl32.lib to the end of the link command. This works fine, but in versions later than 1.018 it cannot find the library to link. What changed or what am I missing? -DavidI hate to be a pest but can anyone point me to why this is happening? It always worked before... -David
Oct 30 2007
David Medlock wrote:David Medlock wrote:opengl32.lib doesn't come with dmd, so you need to get it from somewhere else. Can't remember where I got mine from. You can also create it with implib, like this: implib /s opengl32.lib opengl32.dll implib is in the 'basic utilities package', search for it on digitalmars.com.When I compile(any version before DMD 1.018) I typically add opengl32.lib to the end of the link command. This works fine, but in versions later than 1.018 it cannot find the library to link. What changed or what am I missing? -DavidI hate to be a pest but can anyone point me to why this is happening? It always worked before... -David
Oct 30 2007
On Tue, 30 Oct 2007 22:18:48 -0400, David Medlock wrote:David Medlock wrote:It might help us if we knew ... The location of the DMD compiler. The contents and location of the sci.ini file. The location of the opengl32.lib file. The command line you used to compile with. The %PATH% value. Also, if you change nothing else but the compiler being invoked, does it still work if you use a pre 1.018 compiler? -- Derek (skype: derek.j.parnell) Melbourne, Australia 31/10/2007 1:52:34 PMWhen I compile(any version before DMD 1.018) I typically add opengl32.lib to the end of the link command. This works fine, but in versions later than 1.018 it cannot find the library to link. What changed or what am I missing? -DavidI hate to be a pest but can anyone point me to why this is happening?
Oct 30 2007
Derek Parnell wrote:On Tue, 30 Oct 2007 22:18:48 -0400, David Medlock wrote:I have both DMC and DMD installed on Z:. I fixed this by changing sc.ini to explicitly point to the z:\dm\lib and z:\dmd\lib locations . My point is this worked pre 1.018 and is broken in all versions thereafter. I was just wondering what was changed, as something like this should work 'right out of the box'. I have been using DMD/DMC quite a while and this has always just worked. -DavidDavid Medlock wrote:It might help us if we knew ... The location of the DMD compiler. The contents and location of the sci.ini file. The location of the opengl32.lib file. The command line you used to compile with. The %PATH% value. Also, if you change nothing else but the compiler being invoked, does it still work if you use a pre 1.018 compiler?When I compile(any version before DMD 1.018) I typically add opengl32.lib to the end of the link command. This works fine, but in versions later than 1.018 it cannot find the library to link. What changed or what am I missing? -DavidI hate to be a pest but can anyone point me to why this is happening?
Oct 31 2007