forked from qt-creator/qt-creator
Only use lib64 on 64 bit Linux, not Windows or Mac.
This commit is contained in:
@@ -179,7 +179,7 @@ static inline QStringList getPluginPaths()
|
||||
// 1) "plugins" (Win/Linux)
|
||||
QString pluginPath = rootDirPath;
|
||||
pluginPath += QDir::separator();
|
||||
#ifdef QT_ARCH_X86_64
|
||||
#if defined(QT_ARCH_X86_64) && defined(Q_OS_UNIX) && !defined(Q_OS_MAC)
|
||||
pluginPath += QLatin1String("lib64");
|
||||
#else
|
||||
pluginPath += QLatin1String("lib");
|
||||
|
||||
Reference in New Issue
Block a user