[Doxygen-users] (no subject)
Brought to you by:
dimitri
|
From: Trevor R. <Tre...@pe...> - 2001-05-19 01:13:27
|
FYI,
I got the following error building doxygen-1.2.7-20010517 with MS VC++ 6 on
Win2K.
cl -c -nologo -DQT_NODLL -W3 -O2 -I"..\qtools" -I"."
-Fo..\objects\language.obj language.cpp
language.cpp
translator_dk.h(338) : fatal error C1076: compiler limit : internal heap
limit reached; use /Zm to specify a higher limit
Adding "-Zm200" (which doubles the maximum) to line 145 of
src/libdoxygen.pro.in fixes the problem:
win32:TMAKE_CXXFLAGS += -DQT_NODLL -Zm200
-Trevor
|