Walter, would it be possible to make .map file generation follow the -od flag? It's odd when a build script fills a directory with map files while executables and object files are properly in their own directories as specified via -od and -of flags.
Btw, I have just pushed a changeset and made the build script parallel. I turned this: foreach (dir; dirs) into this: foreach (dir; taskPool.parallel(dirs, 1)) And added other small cosmetic changes, but the above is the only real change. Here's my timings: Serial build: 1min, 3sec Parallel build: 22sec
