-
complement pushed 3 commit(s) to refs/heads/master in the complement Git repository of the Complement project.
2009-11-16 10:10:09 UTC in Complement
-
Branch STLport-5.2:
$ CXXFLAGS='-O2 -pipe' ./configure
$ cat build/Makefiles/gmake/config.mak
EXTRA_CXXFLAGS := -O2 -pipe
mainstream:
$ CXXFLAGS='-O2 -pipe' ./configure
$ cat Makefiles/gmake/config.mak
EXTRA_CXXFLAGS := -O2 -pipe.
2009-10-30 07:28:34 UTC in STLport
-
mainstream:
commit 4c0b1a04a664f0518aa4088c034b1a2bb8355ac4
Author: Petr Ovtchenkov
Date: Tue Nov 18 12:53:53 2008 +0300
fix: DESTDIR should be in base directory path, not in /lib, /bin, /include
Makefiles/gmake/targetdirs.mak | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
STLport-5.2 branch:
commit...
2009-10-30 07:19:04 UTC in STLport
-
This artifact has been marked as a duplicate of artifact 2482830 with reason:
No explanation provided.
2009-10-30 07:13:57 UTC in STLport
-
See ID: 2482830.
Already fixed:
mainstream:
commit 2c796b44f0c6b05848f4980e05d18a12fb0de9bc
Author: Petr Ovtchenkov
Date: Fri Jan 9 12:51:14 2009 +0300
Fix wrong parsing of values in environment variables.
Fix wrong parsing of values in environment variables
variables like CFLAGS; see bug report #2482830.
If no arguments, check environment variables.
2009-10-30 07:12:13 UTC in STLport
-
Use either --target= or $CXX/$CC. Cross-compilation scheme present here only for gcc. Option --target= assume cross-compilation.
2009-10-30 06:48:06 UTC in STLport
-
Done, thanks.
2009-10-30 06:31:06 UTC in STLport
-
Fixed in [master b3329ad]. Test added (for *nixes). Not sure that this should be done in 5.2 too --- compatibility issue.
2009-10-22 20:23:37 UTC in STLport
-
Problem come from _fstream.c:
// This member function is called if we're performing the first I/O
// operation on a filebuf, or if we're performing an output operation
// immediately after a seek.
template
bool basic_filebuf::_M_switch_to_output_mode()
{
if (this->is_open() && (_M_base.__o_mode() & (int)ios_base::out) &&
(...
2009-10-19 09:42:58 UTC in STLport
-
Attempt to write into file fail; put position is EOF. Significant condition: read before write attempt.
const char fname[] = "/tmp/stlport.test";
{
fstream f( fname, ios_base::in | ios_base::out | ios_base::trunc | ios_base::binary );
int n = 0;
EXAM_CHECK( f.is_open() );
EXAM_CHECK( f.good() );
f.write( (const char*)&n, sizeof(int) );
EXAM_CHECK(...
2009-10-19 09:38:36 UTC in STLport