On Tue, 08 May 2018 13:23:07 +0000, BoQsc wrote: > On Tuesday, 8 May 2018 at 13:04:12 UTC, Seb wrote: >> >> Did you try the newer MSCOFF format >> >> dub --arch=x86_mscoff start_minimum_server.d >> >> or >> >> dub --arch=x64 start_minimum_server.d > > C:\Users\Vaidas\Desktop>dub --arch=x86_mscoff start_minimum_server.d > Failed to find a package named 'start_minimum_server.d'. > > C:\Users\Vaidas\Desktop>dub --arch=x64 start_minimum_server.d > Unsupported architecture: x64
Try the 64-bit build as "--arch=x86_64"; dub doesn't recognize x64 (at least on Windows). dub --arch=x86_64 --single start_minimum_server.d For your first attempt above, adding the --single flag might work. --Ryan