Tagged Questions

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
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
110 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
165 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
139 views

Is STLPort's string implementation using reference counting?

Is STLPort implemented string via reference counting mechanism?
1
vote
1answer
202 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
82 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
2answers
216 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 ...
0
votes
1answer
96 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
487 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
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
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
317 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 ...