473,408 Members | 2,161 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,408 software developers and data experts.

getting C1060 error when compiling a project with lots of boost in

Hi,
I am using Boost and VC 7.1 compiler has started complaining about out of
heap space with C1060 after it crossed a certain size.
No amount of "Zm" option changes work.
Saw that there is a special fix for C++ compiler for in KB 837437 just for
this problem.
How can I download this ? Download support website doesn't have a clue about
this fix ?
Any help is greatly appreciated.

Thank You

Raja
Nov 17 '05 #1
6 1498
Call product support services. QFE's are not available for download since we
need to track the customers that have installed them.

Thanks.

Ronald Laeremans
Visual C++ team

"Raja Cherukuri" <Raja Ch*******@discussions.microsoft.com> wrote in message
news:07**********************************@microsof t.com...
Hi,
I am using Boost and VC 7.1 compiler has started complaining about out of
heap space with C1060 after it crossed a certain size.
No amount of "Zm" option changes work.
Saw that there is a special fix for C++ compiler for in KB 837437 just for
this problem.
How can I download this ? Download support website doesn't have a clue
about
this fix ?
Any help is greatly appreciated.

Thank You

Raja

Nov 17 '05 #2
Tried to get in touch with them thru web. Was of no use. Hence had to post
here.
Is there clear straight forward phone # that I can call up.
The support # keeps sending me in circles.

Thank You

Raja

"Ronald Laeremans [MSFT]" wrote:
Call product support services. QFE's are not available for download since we
need to track the customers that have installed them.

Thanks.

Ronald Laeremans
Visual C++ team

"Raja Cherukuri" <Raja Ch*******@discussions.microsoft.com> wrote in message
news:07**********************************@microsof t.com...
Hi,
I am using Boost and VC 7.1 compiler has started complaining about out of
heap space with C1060 after it crossed a certain size.
No amount of "Zm" option changes work.
Saw that there is a special fix for C++ compiler for in KB 837437 just for
this problem.
How can I download this ? Download support website doesn't have a clue
about
this fix ?
Any help is greatly appreciated.

Thank You

Raja


Nov 17 '05 #3
PROBLEM SOLVED:

Finally got in touch with a great customer support person who got me this
hotfix.
The problem got solved.

Suggestion : The sooner they put this on MSFT website the better. Because
even a marginal sized test program ( when using boost templates header files
) faces this issue.

Thanks a lot to all those involved who helped me out.

"Raja Cherukuri" wrote:
Tried to get in touch with them thru web. Was of no use. Hence had to post
here.
Is there clear straight forward phone # that I can call up.
The support # keeps sending me in circles.

Thank You

Raja

"Ronald Laeremans [MSFT]" wrote:
Call product support services. QFE's are not available for download since we
need to track the customers that have installed them.

Thanks.

Ronald Laeremans
Visual C++ team

"Raja Cherukuri" <Raja Ch*******@discussions.microsoft.com> wrote in message
news:07**********************************@microsof t.com...
Hi,
I am using Boost and VC 7.1 compiler has started complaining about out of
heap space with C1060 after it crossed a certain size.
No amount of "Zm" option changes work.
Saw that there is a special fix for C++ compiler for in KB 837437 just for
this problem.
How can I download this ? Download support website doesn't have a clue
about
this fix ?
Any help is greatly appreciated.

Thank You

Raja


Nov 17 '05 #4
This will be rolled up into the next service pack. Apart from that we cannot
put QFEs on the web since they are independent of one another and installing
a second one might break one you had previously installed (if the fixes are
to the same file), so we really need to be able to keep track of who
deployed what so we can help customers avoid this.

Ronald

"Raja Cherukuri" <Ra***********@discussions.microsoft.com> wrote in message
news:73**********************************@microsof t.com...
PROBLEM SOLVED:

Finally got in touch with a great customer support person who got me this
hotfix.
The problem got solved.

Suggestion : The sooner they put this on MSFT website the better. Because
even a marginal sized test program ( when using boost templates header
files
) faces this issue.

Thanks a lot to all those involved who helped me out.

"Raja Cherukuri" wrote:
Tried to get in touch with them thru web. Was of no use. Hence had to
post
here.
Is there clear straight forward phone # that I can call up.
The support # keeps sending me in circles.

Thank You

Raja

"Ronald Laeremans [MSFT]" wrote:
> Call product support services. QFE's are not available for download
> since we
> need to track the customers that have installed them.
>
> Thanks.
>
> Ronald Laeremans
> Visual C++ team
>
> "Raja Cherukuri" <Raja Ch*******@discussions.microsoft.com> wrote in
> message
> news:07**********************************@microsof t.com...
> > Hi,
> > I am using Boost and VC 7.1 compiler has started complaining about
> > out of
> > heap space with C1060 after it crossed a certain size.
> > No amount of "Zm" option changes work.
> > Saw that there is a special fix for C++ compiler for in KB 837437
> > just for
> > this problem.
> > How can I download this ? Download support website doesn't have a
> > clue
> > about
> > this fix ?
> > Any help is greatly appreciated.
> >
> > Thank You
> >
> > Raja
>
>
>

Nov 17 '05 #5
Ronald Laeremans [MSFT] <ro*****@online.microsoft.com> wrote:
This will be rolled up into the next service pack. [...]

When is that due?

Schobi

--
Sp******@gmx.de is never read
I'm Schobi at suespammers dot org

"The presence of those seeking the truth is infinitely
to be prefered to those thinking they've found it."
Terry Pratchett
Nov 17 '05 #6
No date announced yet. Definitely not imminent. Sorry.

Ronald

"Hendrik Schober" <Sp******@gmx.de> wrote in message
news:Ox**************@TK2MSFTNGP15.phx.gbl...
Ronald Laeremans [MSFT] <ro*****@online.microsoft.com> wrote:
This will be rolled up into the next service pack. [...]

When is that due?

Schobi

--
Sp******@gmx.de is never read
I'm Schobi at suespammers dot org

"The presence of those seeking the truth is infinitely
to be prefered to those thinking they've found it."
Terry Pratchett

Nov 17 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Tommy Vercetti | last post by:
In Visual Studio .NET 2003, I do the following 1) File->New->Project 2) Visual C++ Projects->.NET->Windows Forms Application 3) Project->Add New Item->C++ File 4) Clear the new C++ file and...
13
by: Russell Hind | last post by:
I'm trying to use boost::bind and boost::function inside managed code, but there appears to be some code generation problems. The following code compiles fine, but the function object throws an...
1
by: Rune Jorgensen (DDS) | last post by:
I use the C++ compiler with Visual Studio .NET 2003. OS is XP SP2. Our projects include many large 3rd party C++ include files. I have installed the hotfix mentioned in MSDN KB article 837437. It...
2
by: Phil Davidson | last post by:
/* (Posted to microsoft.public.dotnet.languages.vc) In C++/CLI under Visual Studio 2005, creating an "enum class" member called "Equals" can cause compiler error C1060 (out of memory) and C1063...
0
by: Ling | last post by:
I am using boost.python to wrap C++ function which includes directmusic libraries to simply play the midi, but lots of linkage errors "error LNK2001: unresolved external symbol". I wonder if it is...
0
by: Lubdha Khandelwal | last post by:
I'm using VS2005 to compile a file that only contains a single large (100MB) hard-coded char array. It looks like: unsigned char test = { 0x50,0x4b,0x3,0x4,0x14,0x0,0x0,0x0,0x8,0x0,0x5c,0x6c,...
6
by: hsmit.home | last post by:
Hello, I came across a strange error and it's really been bugging me. Maybe someone else has come across this and any insight would be appreciated. What I'm trying to accomplish is using...
1
by: Tim H | last post by:
Compiling with g++ 4: This line: if_then_else_return(_1 == 0, 64, _1) When called with a bignum class as an argument yields: /usr/include/boost/lambda/if.hpp: In member function 'RET...
3
lifeisgreat20009
by: lifeisgreat20009 | last post by:
I am getting the following error :- 1>------ Build started: Project: Polygon Drawer, Configuration: Debug Win32 ------ 1>Compiling... 1>Dialog.cpp 1>g:\my subjects\3rd semester\project...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.