|
|
Zulu Windows Build Instructions
This document explains how to build Zulu for the Windows platform.
Required Tools:
-
Microsoft Visual C++ version 4.2 or later
-
The same set of tools for building Mozilla
Setting up:
Building:
-
You need to be running a vanilla command prompt. Other shells may work,
but you might have to tweak makefiles.
-
Build Zulu: This will do a complete build of the source tree. You
will end up with a zulu.exe at the end. The zulu.exe will be in your dist\win32_[OD].obj\bin
directory (O will be used when you don't set MOZ_DEBUG; D will be used
when you set MOZ_DEBUG).
-
cd mozilla
-
Optional: clobber all your old binaries - nmake -f trex.mak
clobber_all
-
nmake -f trex.mak build_all
Running:
-
To run Zulu:
-
cd mozilla\dist\win32_[OD].obj\bin
-
.\zulu.exe
Notes:
-
This build process does not use Visual C++ generated project files for
several reasons having to do with (among other things) size, maintainability,
and the long term desire to start using more of tools like gmake, or plug
and play developer tools. This does not preclude you from using the Visual
C++ IDE, or it's debugger. Once you have built a zulu.exe do this to run
it under the debugger:
-
cd mozilla\dist\win32_[OD].obj\bin
-
msdev zulu.exe
Copyright © 1998 Netscape
Communications Corporation
|