473,487 Members | 2,483 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

STLPort 4.5.3 compiled with Comeau 4.3.0.1 on Windows?

I'm sure it's been done. I'm sure that I'm an idiot for
even asking the question, but has anyone been successful in
getting Comeau 4.3.0.1 to compile STLPort, or even use
STLPort in a program (using the MSVC7 backend, I should
state)?

There doesn't seem to be any out of the box support for
Comeau on Win32/MSVC7 in STLPort, but that's okay, I would
think, as it does create libraries for MSVC7.

Trying to compile first my app that uses Spirit (which
inspired my purchase of Comeau to begin with), I gave up and
started at ground zero, a simple hello world program:

#include <iostream>

int main(void)
{
std::cout << "Hello, world\n";
}

and I can't seem to get it to work. I'm sure it's me. I am
using STLPort because I've used it now for a year and I
really like it, and I don't think I should have to switch
libraries. Everyone seems to think Comeau is great, and I
have no reason to doubt it. If you have been able to get
the above snippet of code to compile, please respond as I'd
love to see your configuration. I'm pulling my hair out.

I won't lengthen and bore you with the details at this
point, though I can if someone responds in the affirmative. I
just want some confirmation that it can be, and has been,
done.

Jay

P.S. There are no Comeau or STLPort specific newsgroups wherein
to post this, and there are no answers on Google.
Jul 19 '05 #1
4 1659
"Icosahedron" <no***@nowhere.com> wrote in message
news:es**********************@bgtnsc05-news.ops.worldnet.att.net...
I'm sure it's been done. I'm sure that I'm an idiot for
even asking the question, but has anyone been successful in
getting Comeau 4.3.0.1 to compile STLPort, or even use
STLPort in a program (using the MSVC7 backend, I should
state)?

There doesn't seem to be any out of the box support for
Comeau on Win32/MSVC7 in STLPort, but that's okay, I would
think, as it does create libraries for MSVC7.

Trying to compile first my app that uses Spirit (which
inspired my purchase of Comeau to begin with), I gave up and
started at ground zero, a simple hello world program:

#include <iostream>

int main(void)
I believe that the "int main(void)" is causing problems.
Instead, try either of the following two options
int main()
int main(int argc, char* argv[])
{
std::cout << "Hello, world\n";
}

and I can't seem to get it to work. I'm sure it's me. I am
using STLPort because I've used it now for a year and I
really like it, and I don't think I should have to switch
libraries. Everyone seems to think Comeau is great, and I
have no reason to doubt it. If you have been able to get
the above snippet of code to compile, please respond as I'd
love to see your configuration. I'm pulling my hair out.

I won't lengthen and bore you with the details at this
point, though I can if someone responds in the affirmative. I
just want some confirmation that it can be, and has been,
done.

Jay

P.S. There are no Comeau or STLPort specific newsgroups wherein
to post this, and there are no answers on Google.

Jul 19 '05 #2
Icosahedron wrote:
[SNIP]
P.S. There are no Comeau or STLPort specific newsgroups wherein
to post this, and there are no answers on Google.


But there is Greg Comeau who (I believe) is happy to help. As soon as you
describe you problem.

A
Jul 19 '05 #3
"Icosahedron" <no***@nowhere.com> writes:
P.S. There are no Comeau or STLPort specific newsgroups wherein
to post this, and there are no answers on Google.


Actually, there are mailing lists that should be able to help you. Try
http://www.stlport.org/cgi-bin/forum/dcboard.cgi where you probably
want the "Setup" forum. Oh, wait a minute - you've already posted
there... Good luck.

--
Raoul Gough
"Let there be one measure for wine throughout our kingdom, and one
measure for ale, and one measure for corn" - Magna Carta
Jul 19 '05 #4
On Mon, 18 Aug 2003 13:03:41 +0100, "Klaus Eichner"
<kl******@yahoo.com> wrote:
"Icosahedron" <no***@nowhere.com> wrote in message
news:es**********************@bgtnsc05-news.ops.worldnet.att.net...
I'm sure it's been done. I'm sure that I'm an idiot for
even asking the question, but has anyone been successful in
getting Comeau 4.3.0.1 to compile STLPort, or even use
STLPort in a program (using the MSVC7 backend, I should
state)?

There doesn't seem to be any out of the box support for
Comeau on Win32/MSVC7 in STLPort, but that's okay, I would
think, as it does create libraries for MSVC7.

Trying to compile first my app that uses Spirit (which
inspired my purchase of Comeau to begin with), I gave up and
started at ground zero, a simple hello world program:

#include <iostream>

int main(void)


I believe that the "int main(void)" is causing problems.
Instead, try either of the following two options
int main()
int main(int argc, char* argv[])


In C++,
int main(void)
is semantically equivalent to
int main()

Tom
Jul 19 '05 #5

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

Similar topics

1
3246
by: Gary | last post by:
I am trying to compile the STLPORT 4.5.3 using g++ 3.3 compiler on sun. I have modified the stl_gcc.h file to point to the correct include path for the compiler. I am getting the following errors:...
2
2026
by: programmer_pete | last post by:
I am trying to switch to STLPort 4.6.2 from the MSVC STL. My project uses Spirit 1.6.0 and MSVC++ 6. I have configured STLPort as follows: #define _STLP_NO_OWN_IOSTREAMS 1 #define...
1
1659
by: mikets | last post by:
I'm using STLport in my project, and now I need to use a library which was compiled using MSVC 6.0 headers. For example, the "library.h" file contains #include <vector>. Apparently, in my...
1
1982
by: Boris | last post by:
Hi, I'm using STLport-4.5.3 with Visual C++ 6.0 on Windows XP. It seems, the module built requires MSVCP60.DLL - which (mostly) contains Streams implementation by Microsoft. So, STLport falls...
1
1329
by: Aman_JIANG | last post by:
hi all, i have compiled STLport 5.0.1 on vc8 like this: nmake -fnmake-vc8.mak all and i saw a warnings: lib /nologo /OUTbj\vc8\static\stlport_static.5.0.lib obj\vc8\static\dll_main.o...
1
6295
by: PangFromChina | last post by:
Platform:window 2000 professional, VC++6.0 +SP5 STLport: STLport 5.0.2 While test STLport following "STLport README for Microsoft Visual C++ compilers." of README.msvc(readme.txt), there is a...
2
3046
by: Artur Bac | last post by:
I got a problem with eVc4 i STLPort and i dont known why c:\stlport-5.0.2\stlport\stl\_construct.h(115) : error C2665: 'new' : none of the 2 overloads can convert parameter 2 from type 'struct...
0
2326
by: francois.cppdevs | last post by:
Hi C++ supporters I just wanted to let you know that STLport 5.1.0 has been released, it is available here: https://sourceforge.net/projects/stlport/ Since 5.0 this library implements some...
41
18049
by: Miroslaw Makowiecki | last post by:
Where can I download Comeau compiler as a trial version? Thanks in advice.
1
6846
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
7349
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
5442
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
4565
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3076
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3071
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1381
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
600
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
267
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.