mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-05 13:47:26 +02:00
Add note about non-standard GCC feature
This commit is contained in:
@@ -189,6 +189,9 @@ setupLogfile( QFile& f )
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
// this is not supported in upstream libstdc++ as shipped with GCC
|
||||||
|
// GCC needs the patch from https://gcc.gnu.org/ml/libstdc++/2011-06/msg00066.html applied
|
||||||
|
// we could create a CMake check like the one for taglib, but I don't care right now :P
|
||||||
logStream.open( f.fileName().toStdWString().c_str() );
|
logStream.open( f.fileName().toStdWString().c_str() );
|
||||||
#else
|
#else
|
||||||
logStream.open( f.fileName().toStdString().c_str() );
|
logStream.open( f.fileName().toStdString().c_str() );
|
||||||
|
Reference in New Issue
Block a user