Thread: Re: [Quickfix-developers] Problem with Pentium 4
Brought to you by:
orenmnero
From: Oren M. <ore...@ya...> - 2003-02-27 14:31:24
|
Could it be that the configuration file is missing or incorrectly configured on that machine? I know in 1.3.2, such things caused crashes in JNI. I believe they have been fixed in the repository and it should now give you a proper exception with an error message. I would suggest getting the latest from CVS to see if it gives you a reason why it cannot load. --- Min Tang <mi...@op...> wrote: > Hello, > > I have implemented both QuickFix server (socket > acceptor) and client (socket initiator) on a Pentium > III/Windows XP/ Java platform and it works fine. But > when I moved it to Pentium 4 (everything else are > the same, Windows XP and Java), I got error. > Attached are two error log files. > > Is this a known problem? > > Thanks, > > Min > > ATTACHMENT part 2 application/octet-stream name=hs_err_pid3924.log > ATTACHMENT part 3 application/octet-stream name=hs_err_pid440.log __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ |
From: Min T. <mi...@op...> - 2003-02-27 20:04:10
|
I just checked out most recent version from QuickFix CVS and tried to build on VC++ 6.0. I got "fatal error C1060: compiler is out of heap space". Then I set option /Zmnumber. When number < 1500, I got "fatal error C1060: compiler is out of heap space" again, and when number >=1500, I got "fatal error C1063:" Any tips? Thanks. ----- Original Message ----- From: "Oren Miller" <ore...@ya...> To: "Min Tang" <mi...@op...>; <qui...@li...> Sent: Thursday, February 27, 2003 9:31 AM Subject: Re: [Quickfix-developers] Problem with Pentium 4 > Could it be that the configuration file is missing or > incorrectly configured on that machine? I know in > 1.3.2, such things caused crashes in JNI. I believe > they have been fixed in the repository and it should > now give you a proper exception with an error message. > > I would suggest getting the latest from CVS to see if > it gives you a reason why it cannot load. > > --- Min Tang <mi...@op...> wrote: > > Hello, > > > > I have implemented both QuickFix server (socket > > acceptor) and client (socket initiator) on a Pentium > > III/Windows XP/ Java platform and it works fine. But > > when I moved it to Pentium 4 (everything else are > > the same, Windows XP and Java), I got error. > > Attached are two error log files. > > > > Is this a known problem? > > > > Thanks, > > > > Min > > > > > ATTACHMENT part 2 application/octet-stream > name=hs_err_pid3924.log > > > > ATTACHMENT part 3 application/octet-stream > name=hs_err_pid440.log > > > > __________________________________________________ > Do you Yahoo!? > Yahoo! Tax Center - forms, calculators, tips, more > http://taxes.yahoo.com/ > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers > |
From: Oren M. <ore...@ya...> - 2003-02-27 20:27:00
|
First make sure you have the latest service pack. There were some versions of MSVC6 that had this sort of bug when using precompiled headers an the /Zm option. If that doesn't help you can try increasing your systems virtual memory or turning off precompiled headers. You can also just comment out all includes of FIX43_Messages.h, as this is likely the file giving you trouble. Min Tang <mi...@op...> wrote:I just checked out most recent version from QuickFix CVS and tried to build on VC++ 6.0. I got "fatal error C1060: compiler is out of heap space". Then I set option /Zmnumber. When number < 1500, I got "fatal error C1060: compiler is out of heap space" again, and when number >=1500, I got "fatal error C1063:" Any tips? Thanks. ----- Original Message ----- From: "Oren Miller" To: "Min Tang" ; Sent: Thursday, February 27, 2003 9:31 AM Subject: Re: [Quickfix-developers] Problem with Pentium 4 > Could it be that the configuration file is missing or > incorrectly configured on that machine? I know in > 1.3.2, such things caused crashes in JNI. I believe > they have been fixed in the repository and it should > now give you a proper exception with an error message. > > I would suggest getting the latest from CVS to see if > it gives you a reason why it cannot load. > > --- Min Tang wrote: > > Hello, > > > > I have implemented both QuickFix server (socket > > acceptor) and client (socket initiator) on a Pentium > > III/Windows XP/ Java platform and it works fine. But > > when I moved it to Pentium 4 (everything else are > > the same, Windows XP and Java), I got error. > > Attached are two error log files. > > > > Is this a known problem? > > > > Thanks, > > > > Min > > > > > ATTACHMENT part 2 application/octet-stream > name=hs_err_pid3924.log > > > > ATTACHMENT part 3 application/octet-stream > name=hs_err_pid440.log > > > > __________________________________________________ > Do you Yahoo!? > Yahoo! Tax Center - forms, calculators, tips, more > http://taxes.yahoo.com/ > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers > ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Quickfix-developers mailing list Qui...@li... https://lists.sourceforge.net/lists/listinfo/quickfix-developers --------------------------------- Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, and more |
From: Min T. <mi...@op...> - 2003-02-27 20:36:16
|
Yes, turning off precompiled headers fixed the C1060 error (I used /Zm1000). Now I got "D:\quickfix\src\C++\Utility.cpp(242) : error C2065: '_beginthread' : undeclared identifier". What's that? ----- Original Message ----- From: Oren Miller To: Min Tang ; om...@th... ; qui...@li... Sent: Thursday, February 27, 2003 3:26 PM Subject: Re: [Quickfix-developers] Problem with Pentium 4 First make sure you have the latest service pack. There were some versions of MSVC6 that had this sort of bug when using precompiled headers an the /Zm option. If that doesn't help you can try increasing your systems virtual memory or turning off precompiled headers. You can also just comment out all includes of FIX43_Messages.h, as this is likely the file giving you trouble. Min Tang <mi...@op...> wrote: I just checked out most recent version from QuickFix CVS and tried to build on VC++ 6.0. I got "fatal error C1060: compiler is out of heap space". Then I set option /Zmnumber. When number < 1500, I got "fatal error C1060: compiler is out of heap space" again, and when number >=1500, I got "fatal error C1063:" Any tips? Thanks. ----- Original Message ----- From: "Oren Miller" To: "Min Tang" ; Sent: Thursday, February 27, 2003 9:31 AM Subject: Re: [Quickfix-developers] Problem with Pentium 4 > Could it be that the configuration file is missing or > incorrectly configured on that machine? I know in > 1.3.2, such things caused crashes in JNI. I believe > they have been fixed in the repository and it should > now give you a proper exception with an error message. > > I would suggest getting the latest from CVS to see if > it gives you a reason why it cannot load. > > --- Min Tang wrote: > > Hello, > > > > I have implemented both QuickFix server (socket > > acceptor) and client (socket initiator) on a Pentium > > III/Windows XP/ Java platform and it works fine. But > > when I moved it to Pentium 4 (everything else are > > the same, Windows XP and Java), I got error. > > Attached are two error log files. > > > > Is this a known problem? > > > > Thanks, > > > > Min > > > > > ATTACHMENT part 2 application/octet-stream > name=hs_err_pid3924.log > > > > ATTACHMENT part 3 application/octet-stream > name=hs_err_pid440.log > > > > __________________________________________________ > Do you Yah! oo!? > Yahoo! Tax Center - forms, calculators, tips, more > http://taxes.yahoo.com/ > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers > ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Quickfix-developers mailing list Qui...@li... https://lists.sourceforge.net/lists/listinfo/quickfix-developers ------------------------------------------------------------------------------ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, and more |
From: Oren M. <ore...@ya...> - 2003-02-27 20:44:13
|
When you were mucking about with the compiler settings, did you accidentally remove the /MD (Muti-threaded DLL) option? Min Tang <mi...@op...> wrote:Yes, turning off precompiled headers fixed the C1060 error (I used /Zm1000). Now I got "D:\quickfix\src\C++\Utility.cpp(242) : error C2065: '_beginthread' : undeclared identifier". What's that?----- Original Message ----- From: Oren Miller To: Min Tang ; om...@th... ; qui...@li... Sent: Thursday, February 27, 2003 3:26 PMSubject: Re: [Quickfix-developers] Problem with Pentium 4 First make sure you have the latest service pack. There were some versions of MSVC6 that had this sort of bug when using precompiled headers an the /Zm option. If that doesn't help you can try increasing your systems virtual memory or turning off precompiled headers. You can also just comment out all includes of FIX43_Messages.h, as this is likely the file giving you trouble. Min Tang <mi...@op...> wrote: I just checked out most recent version from QuickFix CVS and tried to build on VC++ 6.0. I got "fatal error C1060: compiler is out of heap space". Then I set option /Zmnumber. When number < 1500, I got "fatal error C1060: compiler is out of heap space" again, and when number >=1500, I got "fatal error C1063:" Any tips? Thanks. ----- Original Message ----- From: "Oren Miller" To: "Min Tang" ; Sent: Thursday, February 27, 2003 9:31 AM Subject: Re: [Quickfix-developers] Problem with Pentium 4 > Could it be that the configuration file is missing or > incorrectly configured on that machine? I know in > 1.3.2, such things caused crashes in JNI. I believe > they have been fixed in the repository and it should > now give you a proper exception with an error message. > > I would suggest getting the latest from CVS to see if > it gives you a reason why it cannot load. > > --- Min Tang wrote: > > Hello, > > > > I have implemented both QuickFix server (socket > > acceptor) and client (socket initiator) on a Pentium > > III/Windows XP/ Java platform and it works fine. But > > when I moved it to Pentium 4 (everything else are > > the same, Windows XP and Java), I got error. > > Attached are two error log files. > > > > Is this a known problem? > > > > Thanks, > > > > Min > > > > > ATTACHMENT part 2 application/octet-stream > name=hs_err_pid3924.log > > > > ATTACHMENT part 3 application/octet-stream > name=hs_err_pid440.log > > > > __________________________________________________ > Do you Yah! oo!? > Yahoo! Tax Center - forms, calculators, tips, more > http://taxes.yahoo.com/ > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers > ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Quickfix-developers mailing list Qui...@li... https://lists.sourceforge.net/lists/listinfo/quickfix-developers --------------------------------- Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, and more --------------------------------- Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, and more |