1

I'm trying to compile my first application using Forms in D, using the DFL / Tango libraries, but the compiler first attempt said: DFL lib files not found.

Then I tried to compile the libs, and got the following error:

not found: \dmd\import\import\*.obj 
dfl_debug.lib not found

I'm using the DMD compiler, version v2.055.

How I fix it?

menjaraz
  • 7,551
  • 4
  • 41
  • 81
The Mask
  • 17,007
  • 37
  • 111
  • 185
  • I don't think you can use Tango with D2 (yet). – kennytm Nov 19 '11 at 20:01
  • It's being ported ( https://github.com/SiegeLord/Tango-D2 ), but no, if you're using any released versions of Tango, you can't use D2. I don't know if DFL has been ported to D2 or not, but if it's using Tango (as opposed to you using Tango in conjunction with it), then probably not. – Jonathan M Davis Nov 20 '11 at 00:42
  • Rayerd's [DFL fork](https://github.com/Rayerd/dfl) is compatible with 2.057 – menjaraz Jul 23 '12 at 17:07

1 Answers1

2

What I do is download the latest snapshot archive, extract this into where dmd is installed. Then get the latest source from github/Rayerd and copy the win32/dfl directory over the dfl directory from the archive. And finally I use the dfl.exe executable to compile my program.

Rayerd hasn't been keeping up, so check out pull requests and possible other repos to get a working build.

he_the_great
  • 6,554
  • 2
  • 30
  • 28