Forum Navigation
Comments pages?
Posted: 02/03/07 07:03:43I heard the web pages had some sort of built in commenting system.
I was going to add a comment to this page: http://www.dsource.org/projects/tango/wiki/WindowsInstall
But I don't see a link for comment/edit anywhere on that page.
The comment was to be about switching back and forth between phobos and tango:
Instead of editing sc.ini directly, copy the original phobos sc.ini to sc.phobos.ini. Then edit it as directed on that page and copy the result to sc.tango.ini. Then make two simple batch scripts usephobos.bat and usetango.bat
@ECHO OFF echo Setting up DMD environment for using Phobos runtime libraries... copy "C:\dmd\bin\sc.phobos.ini" "C:\dmd\bin\sc.ini" echo Done.
@ECHO OFF echo Setting up DMD environment for using Tango runtime libraries... copy "C:\dmd\bin\sc.tango.ini" "C:\dmd\bin\sc.ini" echo Done.