Tagged Questions
The stlport tag has no wiki summary.
28
votes
3answers
5k views
How to use the boost library (including shared_ptr) with the Android NDK and STLport
This is more of an answer than a question, because I've figured it out, at least as far as cleanly compiling the library. The main issue for me was to get shared_ptr working.
Ingredients:
Boost v. ...
8
votes
2answers
1k views
How to use std::allocator in my own container class
I am trying to write a container class which uses STL allocators. What I currently do is to have a private member
std::allocator<T> alloc_;
(this will later be templated so that the user can ...
4
votes
3answers
979 views
Solution for missing std::wstring support in Android NDK?
I have a game which uses std::wstring as its basic string type in thousand of places as well as doing operations with wchar_t and its functions: wcsicmp() wcslen() vsprintf(), etc.
The problem is ...
4
votes
3answers
253 views
std::string insert method has ambiguous overloads?
Environment: VS2005 C++ using STLPort 5.1.4.
Compiling the following code snippet:
std::string copied = "asdf";
char ch = 's';
copied.insert(0,1,ch);
I receive an error:
Error 1 error C2668: ...
2
votes
7answers
2k views
LNK2001 error when compiling apps referencing STLport-5.1.4 with VC++ 2008
I apologize in advance for the long post...
I used to be able to build our VC++ solutions (we're on VS 2008) when we listed the STLPort include and library directories under VS Menu > Tools > Options ...
1
vote
3answers
109 views
stringstream operator selection issues
I have a class constructor like so:
DotDashLogMatcher( std::stringstream const& pattern );
I call it like so:
std::stringstream s;
DotDashLogMatcher( s << "test" );
This is an ...
1
vote
2answers
162 views
How to use STLPort in my kernel?
I am developing a kernel in C++. But I do not want to write a stdlib; for that purpose I have downloaded STLport http://www.stlport.org/, but I don't know how to install and use it.
I am using Linux ...
1
vote
1answer
135 views
Is STLPort's string implementation using reference counting?
Is STLPort implemented string via reference counting mechanism?
1
vote
1answer
200 views
Linking error Boost.Python with stlport as stdlib
I'm trying to create C++ extensions for python. My C++ code relies on STLPort 5.1.0. I've compiled boost.python with stdlib=stlport. This occurs in my compiler which is Microsoft Visual Studio ...
1
vote
1answer
81 views
Painless way to get C++ extensions in Python in Visual Studio 2005
I'm having some very serious compatibility issues with STLPort 5.1.0 and Boot.Python 1.46.1 in Visual Studio 2005, I was wondering if there was any other way to have Python calling C++ code.
Just in ...
1
vote
1answer
137 views
STLPort ambiguous copy constructor in VS2008 with smart pointer class
We've written a smart pointer class and have been using it with great success with the built-in Visual Studio STL implementation.
The problem is we've realized our performance bottlenecks are in the ...
1
vote
1answer
609 views
stlport undefined references
I'm trying to do some work with the version of stlport in the froyo source. I'm getting
stlport/stlport/stl/_alloc.h:158: undefined reference to `std::__node_alloc::_M_allocate(unsigned int&)'
...
1
vote
0answers
410 views
Android NDK STLPort error
Been racking my brain for hours about this, anybody have any clues? Has an Include not been placed I googled no leads.
In file included from jni/stlport/src/fstream.cpp:22:
...
1
vote
4answers
2k views
Problem building STLport NDK r5/ Android
I'm trying to build STLport for Android. I got the following steps, but they are not working:
1 - Clone STLport repository using:
git clone git://stlport.git.sourceforge.net/gitroot/stlport/stlport
...
1
vote
2answers
215 views
STLport crash (race condition, Darwin only?)
When I run STLport on Darwin I get a strange crash. (Haven't seen it anywhere else than on Mac, but exactly same thing crash on both i686 and PowerPC.) This is what it looks like in gdb:
Program ...
1
vote
2answers
948 views
Has anyone already done the work to make STLPort build with VS2008 and/or an x64 build with VS2005?
At present it seems that VS2008 still isn't supported either in the 5.1.5 release or in the STLPort CVS repository. If someone has already done this work then it would be useful to share, if possible ...
0
votes
0answers
73 views
Building boost with STLport
Does anyone know where I can find instructions (step-by-step) to build Boost 1.46.1 to use STLport? If there are no decent instructions online (I was not able to find any), could someone please post ...
0
votes
1answer
92 views
STLPort, Intel compilers, build errors (though app runs fine!)
Compiling my project against STLPort I get some weird build errors. Weird, because the project runs just fine (and 20-30% faster) though you'd think the build errors would be fatal.
Can anyone ...
0
votes
3answers
477 views
stlport compilation with Visual Studio 2008 SP1 (msvc9) on Windows 7 x64 doesn't work
I downloaded stlport from https://stlport.svn.sourceforge.net/svnroot/stlport/trunk/STLport and tried to compile it with Visual Studio 2008 SP1 on Windows 7 x64.
The readme says to use: configure -c ...
0
votes
1answer
336 views
Visual C++ says “LNK1104: cannot open file 'stlport_statix.lib'”
When trying to link my C++ solution in Visual Studio 2008, I get the message "LNK1104: cannot open file 'stlport_statix.lib'".
I have installed STLport, and the correct path is set in ...
0
votes
1answer
129 views
Problem with the compiling of the STLport under Snow Leopard
I am trying to build the latest version of stlprot under Snow Leopard.
Steps for the compiling i have made:
./configure
sudo make && make check
make && make check are working fine. ...
0
votes
2answers
255 views
use stlport in managed c++
Is it possible to use stlport within a Managed C++ DLL?
In my project i get several 'unresolved token'-errors from the linker for stlport stuff. e.g.:
1>moc_ParentWidget.obj : error LNK2020: ...
0
votes
0answers
197 views
STLport compatibility
I get the impression STLport has substantial potential performance gains over Dinkumware's STL - so I'm considering porting a large MSVC solution to STLport to try it out. The solution has several ...
0
votes
0answers
235 views
How to ensure that you are building against STLport
I am using Visual C++ 2005 to build a couple of libraries and an executable.
I include the STLport location in the Additional Include Path of the libraries and include the library in the input to ...
0
votes
1answer
316 views
Which allocator are available in STLPORT, and how to use them
We're using STLPORT and we'd like to change stlport's default allocator:
instead of vector<int>, we'd like to try vector<int, otherallocator>
Which alternative allocator are available in ...
0
votes
3answers
2k views
Using STL port in VS2008
I am working on porting our C++ code from eVC 4.0 to Visual Studio 2008. Our target is Windows Mobile 6.1 and we are using the Windows Mobile 6.0 SDK for our app.
Our code used stl port when ...