-
Accidental duplicate report.
2009-11-25 20:08:22 UTC by predragm
-
On MSVC 8.0 (Visual Studio 2005), compilation in debug mode fails with
stlport/errno.h(55) : fatal error C1189: #error : errno has been defined before inclusion of errno.h header.
This is due to inclusion of native cstddef from stlport/stl/_cstdef.h
A fix that I found is to preface this inclusion withe the same fix as done in stlport/stddef.h
#if defined (_MSC_VER) || defined (__DMC__)
2009-11-25 20:05:50 UTC by predragm
-
On MSVC 8.0 (Visual Studio 2005), compilation in debug mode fails with
stlport/errno.h(55) : fatal error C1189: #error : errno has been defined before inclusion of errno.h header.
This is due to inclusion of native cstddef from stlport/stl/_cstdef.h
A fix that I found is to preface this inclusion withe the same fix as done in stlport/stddef.h
#if defined (_MSC_VER) || defined (__DMC__)
2009-11-23 18:22:41 UTC by predragm
-
Hi there,
does anyone have experiences of using a realtime OS as Windows add-on (such as Intime, RTX) together with STLport?
If so, which preconditions apply? Can STLport be used without particular modifications?
Thanks in advance,
Michael.
2009-11-23 12:12:18 UTC by bahnm
-
Hallo,
I have a problem with streams (fstream, stringstream, etc.) when I use stlport under real time system (precisely it is rtx subsystem - real time extension for windows).
In my case process that constructs stream object
(e.g.:
std::fstream f("d:\\temp.txt", ios_base::in | ios_base::out | ios_base::trunc);
)
is not able to start process.
questions:
1. Does any one face such...
2009-11-23 09:59:46 UTC by popek777
-
I'm trying to build STLport 5.2.1 on LynxOS 4.0 (x86 and ppc). Typing `make` right after ./confgiure leads to the following errors:
bash-2.02# make
../Makefiles/gmake/top.mak:85: ../Makefiles/gmake/lynxos/sys.mak: No such file or directory
../Makefiles/gmake/top.mak:87: ../Makefiles/gmake/lynxos/targetsys.mak: No such file or directory
make: *** No rule to make target...
2009-11-10 01:43:45 UTC by zaufi
-
For those who didn't understand the previous post, DONT create Autorun in that key.. I've done it and VC stopped working, so I had to delete it to make my VC run correctly again.
2009-11-03 16:50:32 UTC by burek021
-
I can't believe it.. :)
I've solved the problem the moment I finished writting this post :)))
I tried to compile a brand new Win32 project with IDE in VS 2008 (VC9) and I noticed the message saying something about c:\windows\system32\cmd.exe not valid.. Then I remembered, I've changed the default path that cmd.exe runs in when invoked by typing cmd in the RUN dialog (of start menu), so it...
2009-11-03 16:48:47 UTC by burek021
-
Hi,
I'm using VC9 (visual studio 2008) with STLport-5.2.1.tar.bz2.
I've first installed vs 2008 and then tried to compile STLport with instructions from README/INSTALL files and everything went smoothly. Later on, I've tried to compile ApexDC++ in debug mode with VS 2008 IDE and it succeeded too :)
but... some updates have been poping up, asking me to go to windows update site and update vs...
2009-11-03 16:01:48 UTC by burek021
-
Try using: C:\Program Files\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat
That will setup all your environment variables correctly.
2009-11-03 15:08:25 UTC by burek021