diff --git a/base/src/makefile.win b/base/src/makefile.win index 1976497e5978..434ca1807cb9 100644 --- a/base/src/makefile.win +++ b/base/src/makefile.win @@ -83,6 +83,10 @@ LLIBS= \ $(DIST)\lib\xpcom32.lib \ $(DIST)\lib\libplc21.lib \ $(LIBNSPR) +!if "$(MOZ_BITS)"=="32" && defined(MOZ_DEBUG) && defined(GLOWCODE) +LLIBS=$(LLIBS) $(GLOWDIR)\glowcode.lib +!endif + include <$(DEPTH)\config\rules.mak> diff --git a/base/tests/makefile.win b/base/tests/makefile.win index 6f8a72ed17c8..6275134d5e5f 100644 --- a/base/tests/makefile.win +++ b/base/tests/makefile.win @@ -40,6 +40,9 @@ LLIBS= \ !endif $(LIBNSPR) \ $(DIST)\lib\libplc21.lib \ +!if "$(MOZ_BITS)"=="32" && defined(MOZ_DEBUG) && defined(GLOWCODE) + $(GLOWDIR)\glowcode.lib \ +!endif $(RESFILE) include <$(DEPTH)\config\rules.mak>