2011-04-27 10:05:43 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** This file is part of the qmake application of the Qt Toolkit.
|
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
|
2012-09-19 12:28:29 +00:00
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2015-01-28 08:44:43 +00:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
2016-01-15 12:36:27 +00:00
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-09-19 12:28:29 +00:00
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "makefile.h"
|
|
|
|
#include "option.h"
|
|
|
|
#include "cachekeys.h"
|
|
|
|
#include "meta.h"
|
2013-11-20 12:53:04 +00:00
|
|
|
|
|
|
|
#include <ioutils.h>
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
#include <qdir.h>
|
|
|
|
#include <qfile.h>
|
|
|
|
#include <qtextstream.h>
|
2020-04-03 15:11:36 +00:00
|
|
|
#include <qregularexpression.h>
|
2011-04-27 10:05:43 +00:00
|
|
|
#include <qhash.h>
|
|
|
|
#include <qdebug.h>
|
|
|
|
#include <qbuffer.h>
|
|
|
|
#include <qdatetime.h>
|
2013-11-20 12:53:04 +00:00
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
#if defined(Q_OS_UNIX)
|
|
|
|
#include <unistd.h>
|
|
|
|
#else
|
|
|
|
#include <io.h>
|
|
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
2015-12-24 13:38:21 +00:00
|
|
|
#include <algorithm>
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
2014-11-20 15:20:16 +00:00
|
|
|
using namespace QMakeInternal;
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
bool MakefileGenerator::canExecute(const QStringList &cmdline, int *a) const
|
|
|
|
{
|
|
|
|
int argv0 = -1;
|
|
|
|
for(int i = 0; i < cmdline.count(); ++i) {
|
|
|
|
if(!cmdline.at(i).contains('=')) {
|
|
|
|
argv0 = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(a)
|
|
|
|
*a = argv0;
|
|
|
|
if(argv0 != -1) {
|
2014-11-24 15:02:38 +00:00
|
|
|
const QString c = Option::normalizePath(cmdline.at(argv0));
|
2011-04-27 10:05:43 +00:00
|
|
|
if(exists(c))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString MakefileGenerator::mkdir_p_asstring(const QString &dir, bool escape) const
|
|
|
|
{
|
2019-02-14 09:49:52 +00:00
|
|
|
return "@" + makedir.arg(
|
|
|
|
escape ? escapeFilePath(Option::fixPathToTargetOS(dir, false, false)) : dir);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool MakefileGenerator::mkdir(const QString &in_path) const
|
|
|
|
{
|
2014-11-24 15:02:38 +00:00
|
|
|
QString path = Option::normalizePath(in_path);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(QFile::exists(path))
|
|
|
|
return true;
|
|
|
|
|
2014-11-27 13:13:30 +00:00
|
|
|
return QDir().mkpath(path);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MakefileGenerator::verifyCompilers()
|
|
|
|
{
|
2012-09-06 10:21:38 +00:00
|
|
|
ProValueMap &v = project->variables();
|
|
|
|
ProStringList &quc = v["QMAKE_EXTRA_COMPILERS"];
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int i = 0; i < quc.size(); ) {
|
|
|
|
bool error = false;
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProString &comp = quc.at(i);
|
|
|
|
const ProKey okey(comp + ".output");
|
|
|
|
if (v[okey].isEmpty()) {
|
|
|
|
const ProKey ofkey(comp + ".output_function");
|
|
|
|
if (!v[ofkey].isEmpty()) {
|
|
|
|
v[okey].append("${QMAKE_FUNC_FILE_IN_" + v[ofkey].first() + "}");
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
|
|
|
error = true;
|
|
|
|
warn_msg(WarnLogic, "Compiler: %s: No output file specified", comp.toLatin1().constData());
|
|
|
|
}
|
2012-09-06 10:21:38 +00:00
|
|
|
} else if (v[ProKey(comp + ".input")].isEmpty()) {
|
2011-04-27 10:05:43 +00:00
|
|
|
error = true;
|
|
|
|
warn_msg(WarnLogic, "Compiler: %s: No input variable specified", comp.toLatin1().constData());
|
|
|
|
}
|
|
|
|
if(error)
|
|
|
|
quc.removeAt(i);
|
|
|
|
else
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MakefileGenerator::initOutPaths()
|
|
|
|
{
|
2012-09-06 10:21:38 +00:00
|
|
|
ProValueMap &v = project->variables();
|
2011-04-27 10:05:43 +00:00
|
|
|
//for shadow builds
|
|
|
|
if(!v.contains("QMAKE_ABSOLUTE_SOURCE_PATH")) {
|
2012-09-05 16:29:19 +00:00
|
|
|
if (Option::globals->do_cache && !project->cacheFile().isEmpty() &&
|
2011-04-27 10:05:43 +00:00
|
|
|
v.contains("QMAKE_ABSOLUTE_SOURCE_ROOT")) {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString root = v["QMAKE_ABSOLUTE_SOURCE_ROOT"].first().toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
root = QDir::fromNativeSeparators(root);
|
|
|
|
if(!root.isEmpty()) {
|
2012-05-10 08:41:54 +00:00
|
|
|
QFileInfo fi = fileInfo(project->cacheFile());
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!fi.makeAbsolute()) {
|
|
|
|
QString cache_r = fi.path(), pwd = Option::output_dir;
|
|
|
|
if(pwd.startsWith(cache_r) && !pwd.startsWith(root)) {
|
|
|
|
pwd = root + pwd.mid(cache_r.length());
|
|
|
|
if(exists(pwd))
|
2012-09-06 10:21:38 +00:00
|
|
|
v.insert("QMAKE_ABSOLUTE_SOURCE_PATH", ProStringList(pwd));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!v["QMAKE_ABSOLUTE_SOURCE_PATH"].isEmpty()) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString &asp = v["QMAKE_ABSOLUTE_SOURCE_PATH"].first();
|
|
|
|
asp = QDir::fromNativeSeparators(asp.toQString());
|
2011-04-27 10:05:43 +00:00
|
|
|
if(asp.isEmpty() || asp == Option::output_dir) //if they're the same, why bother?
|
|
|
|
v["QMAKE_ABSOLUTE_SOURCE_PATH"].clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
//some builtin directories
|
|
|
|
if(project->isEmpty("PRECOMPILED_DIR") && !project->isEmpty("OBJECTS_DIR"))
|
|
|
|
v["PRECOMPILED_DIR"] = v["OBJECTS_DIR"];
|
2012-12-21 20:08:00 +00:00
|
|
|
static const char * const dirs[] = { "OBJECTS_DIR", "DESTDIR",
|
|
|
|
"SUBLIBS_DIR", "DLLDESTDIR",
|
2018-08-02 22:22:24 +00:00
|
|
|
"PRECOMPILED_DIR", nullptr };
|
2012-08-20 11:04:39 +00:00
|
|
|
for (int x = 0; dirs[x]; x++) {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey dkey(dirs[x]);
|
|
|
|
if (v[dkey].isEmpty())
|
2011-04-27 10:05:43 +00:00
|
|
|
continue;
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProString orig_path = v[dkey].first();
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString &pathRef = v[dkey].first();
|
2015-04-13 19:18:36 +00:00
|
|
|
pathRef = fileFixify(pathRef.toQString(), FileFixifyFromOutdir);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2019-07-03 12:20:27 +00:00
|
|
|
if (!pathRef.endsWith(Option::dir_sep))
|
|
|
|
pathRef += Option::dir_sep;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2013-09-19 08:24:20 +00:00
|
|
|
if (noIO() || (project->first("TEMPLATE") == "subdirs"))
|
2011-04-27 10:05:43 +00:00
|
|
|
continue;
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
QString path = project->first(dkey).toQString(); //not to be changed any further
|
2015-04-13 19:18:36 +00:00
|
|
|
path = fileFixify(path, FileFixifyBackwards);
|
2012-08-20 11:04:39 +00:00
|
|
|
debug_msg(3, "Fixed output_dir %s (%s) into %s", dirs[x],
|
2011-04-27 10:05:43 +00:00
|
|
|
orig_path.toLatin1().constData(), path.toLatin1().constData());
|
|
|
|
if(!mkdir(path))
|
2012-08-20 11:04:39 +00:00
|
|
|
warn_msg(WarnLogic, "%s: Cannot access directory '%s'", dirs[x],
|
2011-04-27 10:05:43 +00:00
|
|
|
path.toLatin1().constData());
|
|
|
|
}
|
|
|
|
|
|
|
|
//out paths from the extra compilers
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &quc = project->values("QMAKE_EXTRA_COMPILERS");
|
|
|
|
for (ProStringList::ConstIterator it = quc.begin(); it != quc.end(); ++it) {
|
|
|
|
QString tmp_out = project->first(ProKey(*it + ".output")).toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
if(tmp_out.isEmpty())
|
|
|
|
continue;
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &tmp = project->values(ProKey(*it + ".input"));
|
|
|
|
for (ProStringList::ConstIterator it2 = tmp.begin(); it2 != tmp.end(); ++it2) {
|
|
|
|
ProStringList &inputs = project->values((*it2).toKey());
|
|
|
|
for (ProStringList::Iterator input = inputs.begin(); input != inputs.end(); ++input) {
|
2015-04-13 19:18:36 +00:00
|
|
|
QString finp = fileFixify((*input).toQString(), FileFixifyFromOutdir);
|
2014-11-20 15:20:16 +00:00
|
|
|
QString path = replaceExtraCompilerVariables(tmp_out, finp, QString(), NoShell);
|
2014-11-24 15:02:38 +00:00
|
|
|
path = Option::normalizePath(path);
|
|
|
|
int slash = path.lastIndexOf('/');
|
2011-04-27 10:05:43 +00:00
|
|
|
if(slash != -1) {
|
|
|
|
path = path.left(slash);
|
|
|
|
// Make out path only if it does not contain makefile variables
|
|
|
|
if(!path.contains("${"))
|
|
|
|
if(path != "." &&
|
2015-04-13 19:18:36 +00:00
|
|
|
!mkdir(fileFixify(path, FileFixifyBackwards)))
|
2011-04-27 10:05:43 +00:00
|
|
|
warn_msg(WarnLogic, "%s: Cannot access directory '%s'",
|
|
|
|
(*it).toLatin1().constData(), path.toLatin1().constData());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!v["DESTDIR"].isEmpty()) {
|
2012-09-06 10:21:38 +00:00
|
|
|
QDir d(v["DESTDIR"].first().toQString());
|
2014-11-24 15:02:38 +00:00
|
|
|
if (Option::normalizePath(d.absolutePath()) == Option::normalizePath(Option::output_dir))
|
2011-04-27 10:05:43 +00:00
|
|
|
v.remove("DESTDIR");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QMakeProject
|
|
|
|
*MakefileGenerator::projectFile() const
|
|
|
|
{
|
|
|
|
return project;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MakefileGenerator::setProjectFile(QMakeProject *p)
|
|
|
|
{
|
|
|
|
if(project)
|
|
|
|
return;
|
|
|
|
project = p;
|
2012-04-17 10:15:39 +00:00
|
|
|
if (project->isActiveConfig("win32"))
|
|
|
|
target_mode = TARG_WIN_MODE;
|
2013-03-06 13:53:36 +00:00
|
|
|
else if (project->isActiveConfig("mac"))
|
|
|
|
target_mode = TARG_MAC_MODE;
|
2012-04-17 10:15:39 +00:00
|
|
|
else
|
|
|
|
target_mode = TARG_UNIX_MODE;
|
2011-04-27 10:05:43 +00:00
|
|
|
init();
|
2015-08-17 17:33:52 +00:00
|
|
|
bool linkPrl = (Option::qmake_mode == Option::QMAKE_GENERATE_MAKEFILE)
|
|
|
|
&& project->isActiveConfig("link_prl");
|
2015-06-02 19:21:53 +00:00
|
|
|
bool mergeLflags = !project->isActiveConfig("no_smart_library_merge")
|
2015-08-17 17:33:52 +00:00
|
|
|
&& !project->isActiveConfig("no_lflags_merge");
|
|
|
|
findLibraries(linkPrl, mergeLflags);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList
|
|
|
|
MakefileGenerator::findFilesInVPATH(ProStringList l, uchar flags, const QString &vpath_var)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList vpath;
|
|
|
|
const ProValueMap &v = project->variables();
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int val_it = 0; val_it < l.count(); ) {
|
|
|
|
bool remove_file = false;
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString &val = l[val_it];
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!val.isEmpty()) {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString qval = val.toQString();
|
|
|
|
QString file = fixEnvVariables(qval);
|
2013-07-04 08:40:57 +00:00
|
|
|
if (file.isEmpty()) {
|
|
|
|
++val_it;
|
|
|
|
continue;
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!(flags & VPATH_NoFixify))
|
2015-04-13 19:18:36 +00:00
|
|
|
file = fileFixify(file, FileFixifyBackwards);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
if(exists(file)) {
|
|
|
|
++val_it;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
bool found = false;
|
2012-09-06 10:21:38 +00:00
|
|
|
if (QDir::isRelativePath(qval)) {
|
2011-04-27 10:05:43 +00:00
|
|
|
if(vpath.isEmpty()) {
|
|
|
|
if(!vpath_var.isEmpty())
|
2012-09-06 10:21:38 +00:00
|
|
|
vpath = v[ProKey(vpath_var)];
|
2012-11-01 13:50:03 +00:00
|
|
|
vpath += v["VPATH"] + v["QMAKE_ABSOLUTE_SOURCE_PATH"];
|
2011-04-27 10:05:43 +00:00
|
|
|
if(Option::output_dir != qmake_getpwd())
|
2012-09-06 10:21:38 +00:00
|
|
|
vpath << Option::output_dir;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2012-09-06 10:21:38 +00:00
|
|
|
for (ProStringList::Iterator vpath_it = vpath.begin();
|
2011-04-27 10:05:43 +00:00
|
|
|
vpath_it != vpath.end(); ++vpath_it) {
|
2014-11-24 15:02:38 +00:00
|
|
|
QString real_dir = Option::normalizePath((*vpath_it).toQString());
|
|
|
|
if (exists(real_dir + '/' + val)) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString dir = (*vpath_it);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!dir.endsWith(Option::dir_sep))
|
|
|
|
dir += Option::dir_sep;
|
|
|
|
val = dir + val;
|
|
|
|
if(!(flags & VPATH_NoFixify))
|
2012-09-06 10:21:38 +00:00
|
|
|
val = fileFixify(val.toQString());
|
2011-04-27 10:05:43 +00:00
|
|
|
found = true;
|
|
|
|
debug_msg(1, "Found file through vpath %s -> %s",
|
|
|
|
file.toLatin1().constData(), val.toLatin1().constData());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!found) {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString dir, regex = val.toQString(), real_dir;
|
2011-04-27 10:05:43 +00:00
|
|
|
if(regex.lastIndexOf(Option::dir_sep) != -1) {
|
|
|
|
dir = regex.left(regex.lastIndexOf(Option::dir_sep) + 1);
|
|
|
|
real_dir = dir;
|
|
|
|
if(!(flags & VPATH_NoFixify))
|
2015-04-13 19:18:36 +00:00
|
|
|
real_dir = fileFixify(real_dir, FileFixifyBackwards) + '/';
|
2011-04-27 10:05:43 +00:00
|
|
|
regex.remove(0, dir.length());
|
|
|
|
}
|
|
|
|
if(real_dir.isEmpty() || exists(real_dir)) {
|
2014-04-29 10:42:54 +00:00
|
|
|
QStringList files = QDir(real_dir).entryList(QStringList(regex),
|
|
|
|
QDir::NoDotAndDotDot | QDir::AllEntries);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(files.isEmpty()) {
|
|
|
|
debug_msg(1, "%s:%d Failure to find %s in vpath (%s)",
|
2016-05-13 13:21:05 +00:00
|
|
|
__FILE__, __LINE__, val.toLatin1().constData(),
|
|
|
|
vpath.join(QString("::")).toLatin1().constData());
|
2011-04-27 10:05:43 +00:00
|
|
|
if(flags & VPATH_RemoveMissingFiles)
|
|
|
|
remove_file = true;
|
|
|
|
else if(flags & VPATH_WarnMissingFiles)
|
|
|
|
warn_msg(WarnLogic, "Failure to find: %s", val.toLatin1().constData());
|
|
|
|
} else {
|
|
|
|
l.removeAt(val_it);
|
|
|
|
QString a;
|
|
|
|
for(int i = (int)files.count()-1; i >= 0; i--) {
|
|
|
|
a = real_dir + files[i];
|
|
|
|
if(!(flags & VPATH_NoFixify))
|
|
|
|
a = fileFixify(a);
|
|
|
|
l.insert(val_it, a);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
debug_msg(1, "%s:%d Cannot match %s%s, as %s does not exist.",
|
|
|
|
__FILE__, __LINE__, real_dir.toLatin1().constData(),
|
|
|
|
regex.toLatin1().constData(), real_dir.toLatin1().constData());
|
|
|
|
if(flags & VPATH_RemoveMissingFiles)
|
|
|
|
remove_file = true;
|
|
|
|
else if(flags & VPATH_WarnMissingFiles)
|
|
|
|
warn_msg(WarnLogic, "Failure to find: %s", val.toLatin1().constData());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(remove_file)
|
|
|
|
l.removeAt(val_it);
|
|
|
|
else
|
|
|
|
++val_it;
|
|
|
|
}
|
|
|
|
return l;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MakefileGenerator::initCompiler(const MakefileGenerator::Compiler &comp)
|
|
|
|
{
|
2012-09-06 10:21:38 +00:00
|
|
|
ProValueMap &v = project->variables();
|
|
|
|
ProStringList &l = v[ProKey(comp.variable_in)];
|
2011-04-27 10:05:43 +00:00
|
|
|
// find all the relevant file inputs
|
|
|
|
if(!init_compiler_already.contains(comp.variable_in)) {
|
|
|
|
init_compiler_already.insert(comp.variable_in, true);
|
|
|
|
if(!noIO())
|
|
|
|
l = findFilesInVPATH(l, (comp.flags & Compiler::CompilerRemoveNoExist) ?
|
|
|
|
VPATH_RemoveMissingFiles : VPATH_WarnMissingFiles, "VPATH_" + comp.variable_in);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MakefileGenerator::init()
|
|
|
|
{
|
|
|
|
verifyCompilers();
|
2014-11-11 18:05:12 +00:00
|
|
|
initOutPaths();
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
ProValueMap &v = project->variables();
|
2012-11-09 18:04:28 +00:00
|
|
|
|
Distinguish between Objective-C and Objective-C++ sources
Instead of lumping both Objective-C (.m) and Objective-C++ (.mm) sources
into the same pile, passing them on to the same compiler as for C++ (CXX),
with the C++ flags (CXXFLAGS), we follow Apple's lead and treat them as
variants of the C and C++ languages separately, so that Objective-C
sources are built with CC and with CFLAGS, and Objective-C++ sources
with CXX, and CXXFLAGS.
This lets us remove a lot of duplicated flags and definitions from the
QMAKE_OBJECTIVE_CFLAGS variable, which in 99% of the cases just matched
the C++ equivalent. The remaining Objective-C/C++ flags are added to
CFLAGS/CXXFLAGS, as the compiler will just ignore them when running in
C/C++ mode. This matches Xcode, which also doesn't have a separate build
setting for Objective-C/C++ flags.
The Makefile qmake generator has been rewritten to support Objective-C/C++
fully, by not assuming that we're just iterating over the C and C++
extensions when dealing with compilation rules, precompiled headers, etc.
There's some duplicated logic in this code, as inherent by qmake's already
duplicated code paths, but this can be cleaned up when C++11 support is
mandatory and we can use lambda functions.
Task-number: QTBUG-36575
Change-Id: I4f06576d5f49e939333a2e03d965da54119e5e31
Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@theqtcompany.com>
2015-10-02 11:54:33 +00:00
|
|
|
v["QMAKE_BUILTIN_COMPILERS"] = ProStringList() << "C" << "CXX";
|
|
|
|
|
|
|
|
v["QMAKE_LANGUAGE_C"] = ProString("c");
|
|
|
|
v["QMAKE_LANGUAGE_CXX"] = ProString("c++");
|
|
|
|
v["QMAKE_LANGUAGE_OBJC"] = ProString("objective-c");
|
|
|
|
v["QMAKE_LANGUAGE_OBJCXX"] = ProString("objective-c++");
|
|
|
|
|
2012-11-09 18:04:28 +00:00
|
|
|
if (v["TARGET"].isEmpty())
|
|
|
|
warn_msg(WarnLogic, "TARGET is empty");
|
2012-05-29 08:53:00 +00:00
|
|
|
|
2013-02-28 11:40:16 +00:00
|
|
|
makedir = v["QMAKE_MKDIR_CMD"].join(' ');
|
|
|
|
chkexists = v["QMAKE_CHK_EXISTS"].join(' ');
|
|
|
|
if (makedir.isEmpty()) { // Backwards compat with Qt < 5.0.2 specs
|
|
|
|
if (isWindowsShell()) {
|
|
|
|
makedir = "if not exist %1 mkdir %1 & if not exist %1 exit 1";
|
|
|
|
chkexists = "if not exist %1";
|
|
|
|
} else {
|
|
|
|
makedir = "test -d %1 || mkdir -p %1";
|
|
|
|
chkexists = "test -e %1 ||";
|
|
|
|
}
|
|
|
|
}
|
2012-05-29 08:53:00 +00:00
|
|
|
|
2013-03-18 11:21:38 +00:00
|
|
|
if (v["QMAKE_CC_O_FLAG"].isEmpty())
|
|
|
|
v["QMAKE_CC_O_FLAG"].append("-o ");
|
|
|
|
|
2013-01-30 14:58:00 +00:00
|
|
|
if (v["QMAKE_LINK_O_FLAG"].isEmpty())
|
|
|
|
v["QMAKE_LINK_O_FLAG"].append("-o ");
|
|
|
|
|
2013-12-09 18:56:31 +00:00
|
|
|
setSystemIncludes(v["QMAKE_DEFAULT_INCDIRS"]);
|
|
|
|
|
2015-01-09 12:42:57 +00:00
|
|
|
ProStringList &incs = project->values("INCLUDEPATH");
|
|
|
|
if (!project->isActiveConfig("no_include_pwd")) {
|
|
|
|
if (Option::output_dir != qmake_getpwd()) {
|
|
|
|
// Pretend that the build dir is the source dir for #include purposes,
|
|
|
|
// consistently with the "transparent shadow builds" strategy. This is
|
|
|
|
// also consistent with #include "foo.h" falling back to #include <foo.h>
|
|
|
|
// behavior if it doesn't find the file in the source dir.
|
|
|
|
incs.prepend(Option::output_dir);
|
|
|
|
}
|
|
|
|
// This makes #include <foo.h> work if the header lives in the source dir.
|
|
|
|
// The benefit of that is questionable, as generally the user should use the
|
|
|
|
// correct include style, and extra compilers that put stuff in the source dir
|
|
|
|
// should add the dir themselves.
|
|
|
|
// More importantly, it makes #include "foo.h" work with MSVC when shadow-building,
|
|
|
|
// as this compiler looks files up relative to %CD%, not the source file's parent.
|
|
|
|
incs.prepend(qmake_getpwd());
|
|
|
|
}
|
|
|
|
incs.append(project->specDir());
|
|
|
|
|
2019-01-11 10:31:24 +00:00
|
|
|
const auto platform = v["QMAKE_PLATFORM"];
|
|
|
|
resolveDependenciesInFrameworks = platform.contains("darwin");
|
|
|
|
|
2018-08-02 22:22:24 +00:00
|
|
|
const char * const cacheKeys[] = { "_QMAKE_STASH_", "_QMAKE_SUPER_CACHE_", nullptr };
|
2014-12-01 15:36:13 +00:00
|
|
|
for (int i = 0; cacheKeys[i]; ++i) {
|
|
|
|
if (v[cacheKeys[i]].isEmpty())
|
|
|
|
continue;
|
|
|
|
const ProString &file = v[cacheKeys[i]].first();
|
|
|
|
if (file.isEmpty())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
QFileInfo fi(fileInfo(file.toQString()));
|
|
|
|
|
|
|
|
// If the file lives in the output dir we treat it as 'owned' by
|
|
|
|
// the current project, so it should be distcleaned by it as well.
|
|
|
|
if (fi.path() == Option::output_dir)
|
|
|
|
v["QMAKE_DISTCLEAN"].append(fi.fileName());
|
|
|
|
}
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList &quc = v["QMAKE_EXTRA_COMPILERS"];
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
//make sure the COMPILERS are in the correct input/output chain order
|
|
|
|
for(int comp_out = 0, jump_count = 0; comp_out < quc.size(); ++comp_out) {
|
|
|
|
continue_compiler_chain:
|
|
|
|
if(jump_count > quc.size()) //just to avoid an infinite loop here
|
|
|
|
break;
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey vokey(quc.at(comp_out) + ".variable_out");
|
|
|
|
if (v.contains(vokey)) {
|
|
|
|
const ProStringList &outputs = v.value(vokey);
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int out = 0; out < outputs.size(); ++out) {
|
|
|
|
for(int comp_in = 0; comp_in < quc.size(); ++comp_in) {
|
|
|
|
if(comp_in == comp_out)
|
|
|
|
continue;
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey ikey(quc.at(comp_in) + ".input");
|
|
|
|
if (v.contains(ikey)) {
|
|
|
|
const ProStringList &inputs = v.value(ikey);
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int in = 0; in < inputs.size(); ++in) {
|
|
|
|
if(inputs.at(in) == outputs.at(out) && comp_out > comp_in) {
|
|
|
|
++jump_count;
|
|
|
|
//move comp_out to comp_in and continue the compiler chain
|
2012-09-06 10:21:38 +00:00
|
|
|
// quc.move(comp_out, comp_in);
|
|
|
|
quc.insert(comp_in, quc.value(comp_out));
|
|
|
|
// comp_out > comp_in, so the insertion did move everything up
|
|
|
|
quc.remove(comp_out + 1);
|
2011-04-27 10:05:43 +00:00
|
|
|
comp_out = comp_in;
|
|
|
|
goto continue_compiler_chain;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!project->isEmpty("QMAKE_SUBSTITUTES")) {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &subs = v["QMAKE_SUBSTITUTES"];
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int i = 0; i < subs.size(); ++i) {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString sub = subs.at(i).toQString();
|
|
|
|
QString inn = sub + ".input", outn = sub + ".output";
|
|
|
|
const ProKey innkey(inn), outnkey(outn);
|
|
|
|
if (v.contains(innkey) || v.contains(outnkey)) {
|
|
|
|
if (!v.contains(innkey) || !v.contains(outnkey)) {
|
2011-04-27 10:05:43 +00:00
|
|
|
warn_msg(WarnLogic, "Substitute '%s' has only one of .input and .output",
|
2012-09-06 10:21:38 +00:00
|
|
|
sub.toLatin1().constData());
|
2011-04-27 10:05:43 +00:00
|
|
|
continue;
|
|
|
|
}
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &tinn = v[innkey], &toutn = v[outnkey];
|
2011-04-27 10:05:43 +00:00
|
|
|
if (tinn.length() != 1) {
|
|
|
|
warn_msg(WarnLogic, "Substitute '%s.input' does not have exactly one value",
|
2012-09-06 10:21:38 +00:00
|
|
|
sub.toLatin1().constData());
|
2011-04-27 10:05:43 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (toutn.length() != 1) {
|
|
|
|
warn_msg(WarnLogic, "Substitute '%s.output' does not have exactly one value",
|
2012-09-06 10:21:38 +00:00
|
|
|
sub.toLatin1().constData());
|
2011-04-27 10:05:43 +00:00
|
|
|
continue;
|
|
|
|
}
|
2015-04-13 19:18:36 +00:00
|
|
|
inn = fileFixify(tinn.first().toQString(), FileFixifyToIndir);
|
|
|
|
outn = fileFixify(toutn.first().toQString(), FileFixifyBackwards);
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
2015-04-13 19:18:36 +00:00
|
|
|
inn = fileFixify(sub, FileFixifyToIndir);
|
2011-04-27 10:05:43 +00:00
|
|
|
if (!QFile::exists(inn)) {
|
|
|
|
// random insanity for backwards compat: .in file specified with absolute out dir
|
2012-09-06 10:21:38 +00:00
|
|
|
inn = fileFixify(sub);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
if(!inn.endsWith(".in")) {
|
|
|
|
warn_msg(WarnLogic, "Substitute '%s' does not end with '.in'",
|
|
|
|
inn.toLatin1().constData());
|
|
|
|
continue;
|
|
|
|
}
|
2015-04-13 19:18:36 +00:00
|
|
|
outn = fileFixify(inn.left(inn.length() - 3), FileFixifyBackwards);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2012-02-11 09:42:03 +00:00
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey confign(sub + ".CONFIG");
|
2012-02-11 09:42:03 +00:00
|
|
|
bool verbatim = false;
|
|
|
|
if (v.contains(confign))
|
|
|
|
verbatim = v[confign].contains(QLatin1String("verbatim"));
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
QFile in(inn);
|
2012-02-11 09:42:03 +00:00
|
|
|
if (in.open(QFile::ReadOnly)) {
|
|
|
|
QByteArray contentBytes;
|
|
|
|
if (verbatim) {
|
|
|
|
contentBytes = in.readAll();
|
|
|
|
} else {
|
|
|
|
QString contents;
|
|
|
|
QStack<int> state;
|
|
|
|
enum { IN_CONDITION, MET_CONDITION, PENDING_CONDITION };
|
|
|
|
for (int count = 1; !in.atEnd(); ++count) {
|
2019-02-26 10:55:15 +00:00
|
|
|
QString line = QString::fromLatin1(in.readLine());
|
2012-02-11 09:42:03 +00:00
|
|
|
if (line.startsWith("!!IF ")) {
|
|
|
|
if (state.isEmpty() || state.top() == IN_CONDITION) {
|
|
|
|
QString test = line.mid(5, line.length()-(5+1));
|
2012-08-28 18:53:25 +00:00
|
|
|
if (project->test(test, inn, count))
|
2012-02-11 09:42:03 +00:00
|
|
|
state.push(IN_CONDITION);
|
|
|
|
else
|
|
|
|
state.push(PENDING_CONDITION);
|
|
|
|
} else {
|
|
|
|
state.push(MET_CONDITION);
|
|
|
|
}
|
|
|
|
} else if (line.startsWith("!!ELIF ")) {
|
|
|
|
if (state.isEmpty()) {
|
|
|
|
warn_msg(WarnLogic, "(%s:%d): Unexpected else condition",
|
|
|
|
in.fileName().toLatin1().constData(), count);
|
|
|
|
} else if (state.top() == PENDING_CONDITION) {
|
|
|
|
QString test = line.mid(7, line.length()-(7+1));
|
2012-08-28 18:53:25 +00:00
|
|
|
if (project->test(test, inn, count)) {
|
2012-02-11 09:42:03 +00:00
|
|
|
state.pop();
|
|
|
|
state.push(IN_CONDITION);
|
|
|
|
}
|
|
|
|
} else if (state.top() == IN_CONDITION) {
|
|
|
|
state.pop();
|
|
|
|
state.push(MET_CONDITION);
|
|
|
|
}
|
|
|
|
} else if (line.startsWith("!!ELSE")) {
|
|
|
|
if (state.isEmpty()) {
|
|
|
|
warn_msg(WarnLogic, "(%s:%d): Unexpected else condition",
|
|
|
|
in.fileName().toLatin1().constData(), count);
|
|
|
|
} else if (state.top() == PENDING_CONDITION) {
|
2011-04-27 10:05:43 +00:00
|
|
|
state.pop();
|
|
|
|
state.push(IN_CONDITION);
|
2012-02-11 09:42:03 +00:00
|
|
|
} else if (state.top() == IN_CONDITION) {
|
|
|
|
state.pop();
|
|
|
|
state.push(MET_CONDITION);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2012-02-11 09:42:03 +00:00
|
|
|
} else if (line.startsWith("!!ENDIF")) {
|
|
|
|
if (state.isEmpty())
|
|
|
|
warn_msg(WarnLogic, "(%s:%d): Unexpected endif",
|
|
|
|
in.fileName().toLatin1().constData(), count);
|
|
|
|
else
|
|
|
|
state.pop();
|
|
|
|
} else if (state.isEmpty() || state.top() == IN_CONDITION) {
|
|
|
|
contents += project->expand(line, in.fileName(), count);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-26 10:55:15 +00:00
|
|
|
contentBytes = contents.toLatin1();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
QFile out(outn);
|
2015-04-23 11:43:30 +00:00
|
|
|
QFileInfo outfi(out);
|
2012-02-11 09:42:03 +00:00
|
|
|
if (out.exists() && out.open(QFile::ReadOnly)) {
|
|
|
|
QByteArray old = out.readAll();
|
|
|
|
if (contentBytes == old) {
|
2011-04-27 10:05:43 +00:00
|
|
|
v["QMAKE_INTERNAL_INCLUDED_FILES"].append(in.fileName());
|
2015-04-23 11:43:30 +00:00
|
|
|
v["QMAKE_DISTCLEAN"].append(outfi.absoluteFilePath());
|
2011-04-27 10:05:43 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
out.close();
|
|
|
|
if(!out.remove()) {
|
|
|
|
warn_msg(WarnLogic, "Cannot clear substitute '%s'",
|
|
|
|
out.fileName().toLatin1().constData());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2015-04-23 11:43:30 +00:00
|
|
|
mkdir(outfi.absolutePath());
|
2011-04-27 10:05:43 +00:00
|
|
|
if(out.open(QFile::WriteOnly)) {
|
|
|
|
v["QMAKE_INTERNAL_INCLUDED_FILES"].append(in.fileName());
|
2015-04-23 11:43:30 +00:00
|
|
|
v["QMAKE_DISTCLEAN"].append(outfi.absoluteFilePath());
|
2012-02-11 09:42:03 +00:00
|
|
|
out.write(contentBytes);
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
|
|
|
warn_msg(WarnLogic, "Cannot open substitute for output '%s'",
|
|
|
|
out.fileName().toLatin1().constData());
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
warn_msg(WarnLogic, "Cannot open substitute for input '%s'",
|
|
|
|
in.fileName().toLatin1().constData());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int x;
|
|
|
|
|
|
|
|
//build up a list of compilers
|
2020-07-06 09:11:44 +00:00
|
|
|
QList<Compiler> compilers;
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2018-08-02 22:22:24 +00:00
|
|
|
const char *builtins[] = { "OBJECTS", "SOURCES", "PRECOMPILED_HEADER", nullptr };
|
2011-04-27 10:05:43 +00:00
|
|
|
for(x = 0; builtins[x]; ++x) {
|
|
|
|
Compiler compiler;
|
|
|
|
compiler.variable_in = builtins[x];
|
|
|
|
compiler.flags = Compiler::CompilerBuiltin;
|
|
|
|
compiler.type = QMakeSourceFileInfo::TYPE_C;
|
|
|
|
if(!strcmp(builtins[x], "OBJECTS"))
|
|
|
|
compiler.flags |= Compiler::CompilerNoCheckDeps;
|
|
|
|
compilers.append(compiler);
|
|
|
|
}
|
2018-10-18 19:43:59 +00:00
|
|
|
for (ProStringList::ConstIterator it = quc.cbegin(); it != quc.cend(); ++it) {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &inputs = v[ProKey(*it + ".input")];
|
2011-04-27 10:05:43 +00:00
|
|
|
for(x = 0; x < inputs.size(); ++x) {
|
|
|
|
Compiler compiler;
|
2012-09-06 10:21:38 +00:00
|
|
|
compiler.variable_in = inputs.at(x).toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
compiler.flags = Compiler::CompilerNoFlags;
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &config = v[ProKey(*it + ".CONFIG")];
|
|
|
|
if (config.indexOf("ignore_no_exist") != -1)
|
2011-04-27 10:05:43 +00:00
|
|
|
compiler.flags |= Compiler::CompilerRemoveNoExist;
|
2012-09-06 10:21:38 +00:00
|
|
|
if (config.indexOf("no_dependencies") != -1)
|
2011-04-27 10:05:43 +00:00
|
|
|
compiler.flags |= Compiler::CompilerNoCheckDeps;
|
2012-09-06 10:21:38 +00:00
|
|
|
if (config.indexOf("add_inputs_as_makefile_deps") != -1)
|
qmake: Allow extra compilers to have the makefile depend on its inputs
And enable this configuration option for the resource compiler. This
results in a re-run of qmake whenever you touch a qrc file, which is
needed to keep the dependencies up to date. Otherwise you might end
up in the situation where you add a file to a qrc, edit the file some
time later, but a rebuild does not regenerate a cpp file and compile
that, so the final binary is stale.
Technically this dependency problem is present for all source files,
and qrc files are no different than any cpp file that you add a new
header #include to, or adding a Q_OBJECT macro to a header. To pick
up these changes we have to re-run qmake, so that qmake can run its
internal dependency checking, and any extra compiler dependency
commands.
The reason we're making this change for rcc files it that conceptually
people treat them as a "project" files, and expect them to behave similarly
to .pro or .pri files, in that editing the file will invalidate the
makefile. In practice this is often what happens when adding new
headers, as you touch the project file when changing the HEADERS
variable.
Task-number: QTBUG-13334
Change-Id: If69149678e7fba6d812d31dcc17877427f9a6122
Reviewed-by: Simon Hausmann <simon.hausmann@nokia.com>
Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
2011-11-24 15:03:19 +00:00
|
|
|
compiler.flags |= Compiler::CompilerAddInputsAsMakefileDeps;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey dkey(*it + ".dependency_type");
|
|
|
|
ProString dep_type;
|
|
|
|
if (!project->isEmpty(dkey))
|
|
|
|
dep_type = project->first(dkey);
|
2011-04-27 10:05:43 +00:00
|
|
|
if (dep_type.isEmpty())
|
|
|
|
compiler.type = QMakeSourceFileInfo::TYPE_UNKNOWN;
|
|
|
|
else if(dep_type == "TYPE_UI")
|
|
|
|
compiler.type = QMakeSourceFileInfo::TYPE_UI;
|
|
|
|
else
|
|
|
|
compiler.type = QMakeSourceFileInfo::TYPE_C;
|
|
|
|
compilers.append(compiler);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{ //do the path fixifying
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList paths;
|
2011-04-27 10:05:43 +00:00
|
|
|
for(x = 0; x < compilers.count(); ++x) {
|
|
|
|
if(!paths.contains(compilers.at(x).variable_in))
|
|
|
|
paths << compilers.at(x).variable_in;
|
|
|
|
}
|
|
|
|
paths << "INCLUDEPATH" << "QMAKE_INTERNAL_INCLUDED_FILES" << "PRECOMPILED_HEADER";
|
|
|
|
for(int y = 0; y < paths.count(); y++) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList &l = v[paths[y].toKey()];
|
|
|
|
for (ProStringList::Iterator it = l.begin(); it != l.end(); ++it) {
|
2011-04-27 10:05:43 +00:00
|
|
|
if((*it).isEmpty())
|
|
|
|
continue;
|
2012-09-06 10:21:38 +00:00
|
|
|
QString fn = (*it).toQString();
|
|
|
|
if (exists(fn))
|
|
|
|
(*it) = fileFixify(fn);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-23 14:41:08 +00:00
|
|
|
if(noIO() || !doDepends() || project->isActiveConfig("GNUmake"))
|
2011-04-27 10:05:43 +00:00
|
|
|
QMakeSourceFileInfo::setDependencyMode(QMakeSourceFileInfo::NonRecursive);
|
|
|
|
for(x = 0; x < compilers.count(); ++x)
|
|
|
|
initCompiler(compilers.at(x));
|
|
|
|
|
|
|
|
//merge actual compiler outputs into their variable_out. This is done last so that
|
|
|
|
//files are already properly fixified.
|
2012-09-06 10:21:38 +00:00
|
|
|
for (ProStringList::Iterator it = quc.begin(); it != quc.end(); ++it) {
|
|
|
|
const ProKey ikey(*it + ".input");
|
|
|
|
const ProKey vokey(*it + ".variable_out");
|
|
|
|
const ProStringList &config = project->values(ProKey(*it + ".CONFIG"));
|
2014-11-27 13:49:16 +00:00
|
|
|
const ProString &tmp_out = project->first(ProKey(*it + ".output"));
|
2011-04-27 10:05:43 +00:00
|
|
|
if(tmp_out.isEmpty())
|
|
|
|
continue;
|
2012-09-06 10:21:38 +00:00
|
|
|
if (config.indexOf("combine") != -1) {
|
|
|
|
const ProStringList &compilerInputs = project->values(ikey);
|
2011-04-27 10:05:43 +00:00
|
|
|
// Don't generate compiler output if it doesn't have input.
|
2012-09-06 10:21:38 +00:00
|
|
|
if (compilerInputs.isEmpty() || project->values(compilerInputs.first().toKey()).isEmpty())
|
2011-04-27 10:05:43 +00:00
|
|
|
continue;
|
|
|
|
if(tmp_out.indexOf("$") == -1) {
|
|
|
|
if(!verifyExtraCompiler((*it), QString())) //verify
|
|
|
|
continue;
|
2015-04-13 19:18:36 +00:00
|
|
|
QString out = fileFixify(tmp_out.toQString(), FileFixifyFromOutdir);
|
2012-09-06 10:21:38 +00:00
|
|
|
bool pre_dep = (config.indexOf("target_predeps") != -1);
|
|
|
|
if (v.contains(vokey)) {
|
|
|
|
const ProStringList &var_out = v.value(vokey);
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int i = 0; i < var_out.size(); ++i) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProKey v = var_out.at(i).toKey();
|
2011-04-27 10:05:43 +00:00
|
|
|
if(v == QLatin1String("SOURCES"))
|
|
|
|
v = "GENERATED_SOURCES";
|
|
|
|
else if(v == QLatin1String("OBJECTS"))
|
|
|
|
pre_dep = false;
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList &list = project->values(v);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!list.contains(out))
|
|
|
|
list.append(out);
|
|
|
|
}
|
2012-09-06 10:21:38 +00:00
|
|
|
} else if (config.indexOf("no_link") == -1) {
|
|
|
|
ProStringList &list = project->values("OBJECTS");
|
2011-04-27 10:05:43 +00:00
|
|
|
pre_dep = false;
|
|
|
|
if(!list.contains(out))
|
|
|
|
list.append(out);
|
|
|
|
} else {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList &list = project->values("UNUSED_SOURCES");
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!list.contains(out))
|
|
|
|
list.append(out);
|
|
|
|
}
|
|
|
|
if(pre_dep) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList &list = project->values("PRE_TARGETDEPS");
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!list.contains(out))
|
|
|
|
list.append(out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &tmp = project->values(ikey);
|
|
|
|
for (ProStringList::ConstIterator it2 = tmp.begin(); it2 != tmp.end(); ++it2) {
|
|
|
|
const ProStringList &inputs = project->values((*it2).toKey());
|
|
|
|
for (ProStringList::ConstIterator input = inputs.constBegin(); input != inputs.constEnd(); ++input) {
|
2011-04-27 10:05:43 +00:00
|
|
|
if((*input).isEmpty())
|
|
|
|
continue;
|
2012-09-06 10:21:38 +00:00
|
|
|
QString inpf = (*input).toQString();
|
2014-11-24 18:51:32 +00:00
|
|
|
if (!verifyExtraCompiler((*it).toQString(), inpf)) //verify
|
2011-04-27 10:05:43 +00:00
|
|
|
continue;
|
2014-11-20 15:20:16 +00:00
|
|
|
QString out = replaceExtraCompilerVariables(tmp_out.toQString(), inpf, QString(), NoShell);
|
2015-04-13 19:18:36 +00:00
|
|
|
out = fileFixify(out, FileFixifyFromOutdir);
|
2012-09-06 10:21:38 +00:00
|
|
|
bool pre_dep = (config.indexOf("target_predeps") != -1);
|
|
|
|
if (v.contains(vokey)) {
|
|
|
|
const ProStringList &var_out = project->values(vokey);
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int i = 0; i < var_out.size(); ++i) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProKey v = var_out.at(i).toKey();
|
2011-04-27 10:05:43 +00:00
|
|
|
if(v == QLatin1String("SOURCES"))
|
|
|
|
v = "GENERATED_SOURCES";
|
|
|
|
else if(v == QLatin1String("OBJECTS"))
|
|
|
|
pre_dep = false;
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList &list = project->values(v);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!list.contains(out))
|
|
|
|
list.append(out);
|
|
|
|
}
|
2012-09-06 10:21:38 +00:00
|
|
|
} else if (config.indexOf("no_link") == -1) {
|
2011-04-27 10:05:43 +00:00
|
|
|
pre_dep = false;
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList &list = project->values("OBJECTS");
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!list.contains(out))
|
|
|
|
list.append(out);
|
|
|
|
} else {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList &list = project->values("UNUSED_SOURCES");
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!list.contains(out))
|
|
|
|
list.append(out);
|
|
|
|
}
|
|
|
|
if(pre_dep) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList &list = project->values("PRE_TARGETDEPS");
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!list.contains(out))
|
|
|
|
list.append(out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//handle dependencies
|
|
|
|
depHeuristicsCache.clear();
|
|
|
|
if(!noIO()) {
|
|
|
|
// dependency paths
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList incDirs = v["DEPENDPATH"] + v["QMAKE_ABSOLUTE_SOURCE_PATH"];
|
2011-04-27 10:05:43 +00:00
|
|
|
if(project->isActiveConfig("depend_includepath"))
|
|
|
|
incDirs += v["INCLUDEPATH"];
|
2020-07-06 09:11:44 +00:00
|
|
|
QList<QMakeLocalFileName> deplist;
|
2016-02-01 08:49:22 +00:00
|
|
|
deplist.reserve(incDirs.size());
|
2012-09-06 10:21:38 +00:00
|
|
|
for (ProStringList::Iterator it = incDirs.begin(); it != incDirs.end(); ++it)
|
2015-02-06 14:30:02 +00:00
|
|
|
deplist.append(QMakeLocalFileName((*it).toQString()));
|
2011-04-27 10:05:43 +00:00
|
|
|
QMakeSourceFileInfo::setDependencyPaths(deplist);
|
2016-05-13 13:21:05 +00:00
|
|
|
debug_msg(1, "Dependency Directories: %s",
|
|
|
|
incDirs.join(QString(" :: ")).toLatin1().constData());
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
//add to dependency engine
|
|
|
|
for(x = 0; x < compilers.count(); ++x) {
|
|
|
|
const MakefileGenerator::Compiler &comp = compilers.at(x);
|
qmake: Allow extra compilers to have the makefile depend on its inputs
And enable this configuration option for the resource compiler. This
results in a re-run of qmake whenever you touch a qrc file, which is
needed to keep the dependencies up to date. Otherwise you might end
up in the situation where you add a file to a qrc, edit the file some
time later, but a rebuild does not regenerate a cpp file and compile
that, so the final binary is stale.
Technically this dependency problem is present for all source files,
and qrc files are no different than any cpp file that you add a new
header #include to, or adding a Q_OBJECT macro to a header. To pick
up these changes we have to re-run qmake, so that qmake can run its
internal dependency checking, and any extra compiler dependency
commands.
The reason we're making this change for rcc files it that conceptually
people treat them as a "project" files, and expect them to behave similarly
to .pro or .pri files, in that editing the file will invalidate the
makefile. In practice this is often what happens when adding new
headers, as you touch the project file when changing the HEADERS
variable.
Task-number: QTBUG-13334
Change-Id: If69149678e7fba6d812d31dcc17877427f9a6122
Reviewed-by: Simon Hausmann <simon.hausmann@nokia.com>
Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
2011-11-24 15:03:19 +00:00
|
|
|
if(!(comp.flags & Compiler::CompilerNoCheckDeps)) {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey ikey(comp.variable_in);
|
|
|
|
addSourceFiles(v[ikey], QMakeSourceFileInfo::SEEK_DEPS,
|
2011-04-27 10:05:43 +00:00
|
|
|
(QMakeSourceFileInfo::SourceFileType)comp.type);
|
qmake: Allow extra compilers to have the makefile depend on its inputs
And enable this configuration option for the resource compiler. This
results in a re-run of qmake whenever you touch a qrc file, which is
needed to keep the dependencies up to date. Otherwise you might end
up in the situation where you add a file to a qrc, edit the file some
time later, but a rebuild does not regenerate a cpp file and compile
that, so the final binary is stale.
Technically this dependency problem is present for all source files,
and qrc files are no different than any cpp file that you add a new
header #include to, or adding a Q_OBJECT macro to a header. To pick
up these changes we have to re-run qmake, so that qmake can run its
internal dependency checking, and any extra compiler dependency
commands.
The reason we're making this change for rcc files it that conceptually
people treat them as a "project" files, and expect them to behave similarly
to .pro or .pri files, in that editing the file will invalidate the
makefile. In practice this is often what happens when adding new
headers, as you touch the project file when changing the HEADERS
variable.
Task-number: QTBUG-13334
Change-Id: If69149678e7fba6d812d31dcc17877427f9a6122
Reviewed-by: Simon Hausmann <simon.hausmann@nokia.com>
Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
2011-11-24 15:03:19 +00:00
|
|
|
|
|
|
|
if (comp.flags & Compiler::CompilerAddInputsAsMakefileDeps) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList &l = v[ikey];
|
qmake: Allow extra compilers to have the makefile depend on its inputs
And enable this configuration option for the resource compiler. This
results in a re-run of qmake whenever you touch a qrc file, which is
needed to keep the dependencies up to date. Otherwise you might end
up in the situation where you add a file to a qrc, edit the file some
time later, but a rebuild does not regenerate a cpp file and compile
that, so the final binary is stale.
Technically this dependency problem is present for all source files,
and qrc files are no different than any cpp file that you add a new
header #include to, or adding a Q_OBJECT macro to a header. To pick
up these changes we have to re-run qmake, so that qmake can run its
internal dependency checking, and any extra compiler dependency
commands.
The reason we're making this change for rcc files it that conceptually
people treat them as a "project" files, and expect them to behave similarly
to .pro or .pri files, in that editing the file will invalidate the
makefile. In practice this is often what happens when adding new
headers, as you touch the project file when changing the HEADERS
variable.
Task-number: QTBUG-13334
Change-Id: If69149678e7fba6d812d31dcc17877427f9a6122
Reviewed-by: Simon Hausmann <simon.hausmann@nokia.com>
Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
2011-11-24 15:03:19 +00:00
|
|
|
for (int i=0; i < l.size(); ++i) {
|
|
|
|
if(v["QMAKE_INTERNAL_INCLUDED_FILES"].indexOf(l.at(i)) == -1)
|
|
|
|
v["QMAKE_INTERNAL_INCLUDED_FILES"].append(l.at(i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
processSources(); //remove anything in SOURCES which is included (thus it need not be linked in)
|
|
|
|
|
|
|
|
//all sources and generated sources must be turned into objects at some point (the one builtin compiler)
|
|
|
|
v["OBJECTS"] += createObjectList(v["SOURCES"]) + createObjectList(v["GENERATED_SOURCES"]);
|
|
|
|
|
|
|
|
//Translation files
|
|
|
|
if(!project->isEmpty("TRANSLATIONS")) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList &trf = project->values("TRANSLATIONS");
|
|
|
|
for (ProStringList::Iterator it = trf.begin(); it != trf.end(); ++it)
|
2014-11-24 15:02:38 +00:00
|
|
|
(*it) = Option::fixPathToTargetOS((*it).toQString());
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//fix up the target deps
|
2018-08-02 22:22:24 +00:00
|
|
|
static const char * const fixpaths[] = { "PRE_TARGETDEPS", "POST_TARGETDEPS", nullptr };
|
2012-08-20 11:04:39 +00:00
|
|
|
for (int path = 0; fixpaths[path]; path++) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList &l = v[fixpaths[path]];
|
|
|
|
for (ProStringList::Iterator val_it = l.begin(); val_it != l.end(); ++val_it) {
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!(*val_it).isEmpty())
|
2015-02-06 14:30:02 +00:00
|
|
|
(*val_it) = Option::fixPathToTargetOS((*val_it).toQString(), false, false);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//extra depends
|
|
|
|
if(!project->isEmpty("DEPENDS")) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList &l = v["DEPENDS"];
|
|
|
|
for (ProStringList::Iterator it = l.begin(); it != l.end(); ++it) {
|
|
|
|
const ProStringList &files = v[ProKey(*it + ".file")] + v[ProKey(*it + ".files")]; //why do I support such evil things?
|
|
|
|
for (ProStringList::ConstIterator file_it = files.begin(); file_it != files.end(); ++file_it) {
|
|
|
|
QStringList &out_deps = findDependencies((*file_it).toQString());
|
|
|
|
const ProStringList &in_deps = v[ProKey(*it + ".depends")]; //even more evilness..
|
|
|
|
for (ProStringList::ConstIterator dep_it = in_deps.begin(); dep_it != in_deps.end(); ++dep_it) {
|
|
|
|
QString dep = (*dep_it).toQString();
|
|
|
|
if (exists(dep)) {
|
|
|
|
out_deps.append(dep);
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
2014-11-24 15:02:38 +00:00
|
|
|
QString dir, regex = Option::normalizePath(dep);
|
|
|
|
if (regex.lastIndexOf('/') != -1) {
|
|
|
|
dir = regex.left(regex.lastIndexOf('/') + 1);
|
2011-04-27 10:05:43 +00:00
|
|
|
regex.remove(0, dir.length());
|
|
|
|
}
|
|
|
|
QStringList files = QDir(dir).entryList(QStringList(regex));
|
|
|
|
if(files.isEmpty()) {
|
|
|
|
warn_msg(WarnLogic, "Dependency for [%s]: Not found %s", (*file_it).toLatin1().constData(),
|
2012-09-06 10:21:38 +00:00
|
|
|
dep.toLatin1().constData());
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
|
|
|
for(int i = 0; i < files.count(); i++)
|
|
|
|
out_deps.append(dir + files[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// escape qmake command
|
2012-04-23 10:44:40 +00:00
|
|
|
project->values("QMAKE_QMAKE") =
|
2012-09-05 16:29:19 +00:00
|
|
|
ProStringList(escapeFilePath(Option::fixPathToTargetOS(Option::globals->qmake_abslocation, false)));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-07-09 18:02:27 +00:00
|
|
|
MakefileGenerator::processPrlFile(QString &file, bool baseOnly)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2015-09-22 10:47:19 +00:00
|
|
|
QString f = fileFixify(file, FileFixifyBackwards);
|
2018-06-28 15:57:53 +00:00
|
|
|
// Explicitly given full .prl name
|
|
|
|
if (!baseOnly && f.endsWith(Option::prl_ext))
|
2020-05-30 21:29:21 +00:00
|
|
|
return processPrlFileCore(file, QStringView(), f);
|
2018-06-28 15:57:53 +00:00
|
|
|
// Explicitly given or derived (from -l) base name
|
2020-05-30 21:29:21 +00:00
|
|
|
if (processPrlFileCore(file, QStringView(), f + Option::prl_ext))
|
2018-06-28 15:57:53 +00:00
|
|
|
return true;
|
|
|
|
if (!baseOnly) {
|
|
|
|
// Explicitly given full library name
|
|
|
|
int off = qMax(f.lastIndexOf('/'), f.lastIndexOf('\\')) + 1;
|
2020-05-30 21:29:21 +00:00
|
|
|
int ext = QStringView(f).mid(off).lastIndexOf('.');
|
2018-06-28 15:57:53 +00:00
|
|
|
if (ext != -1)
|
2020-05-30 21:29:21 +00:00
|
|
|
return processPrlFileBase(file, QStringView(f).mid(off), QStringView{f}.left(off + ext), off);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2018-06-28 15:57:53 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2020-05-30 21:29:21 +00:00
|
|
|
MakefileGenerator::processPrlFileBase(QString &origFile, QStringView origName,
|
|
|
|
QStringView fixedBase, int /*slashOff*/)
|
2018-06-28 15:57:53 +00:00
|
|
|
{
|
|
|
|
return processPrlFileCore(origFile, origName, fixedBase + Option::prl_ext);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2020-05-30 21:29:21 +00:00
|
|
|
MakefileGenerator::processPrlFileCore(QString &origFile, QStringView origName,
|
2018-06-28 15:57:53 +00:00
|
|
|
const QString &fixedFile)
|
|
|
|
{
|
|
|
|
const QString meta_file = QMakeMetaInfo::checkLib(fixedFile);
|
2015-09-22 10:47:19 +00:00
|
|
|
if (meta_file.isEmpty())
|
|
|
|
return false;
|
2019-04-04 14:47:29 +00:00
|
|
|
QMakeMetaInfo libinfo;
|
2015-09-22 10:47:19 +00:00
|
|
|
debug_msg(1, "Processing PRL file: %s", meta_file.toLatin1().constData());
|
|
|
|
if (!libinfo.readLib(meta_file)) {
|
|
|
|
fprintf(stderr, "Error processing meta file %s\n", meta_file.toLatin1().constData());
|
|
|
|
return false;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2018-07-09 16:49:13 +00:00
|
|
|
if (project->isActiveConfig("no_read_prl_qmake")) {
|
|
|
|
debug_msg(2, "Ignored meta file %s", meta_file.toLatin1().constData());
|
2015-09-22 10:47:19 +00:00
|
|
|
return false;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2018-06-28 15:57:53 +00:00
|
|
|
ProString tgt = libinfo.first("QMAKE_PRL_TARGET");
|
|
|
|
if (tgt.isEmpty()) {
|
|
|
|
fprintf(stderr, "Error: %s does not define QMAKE_PRL_TARGET\n",
|
|
|
|
meta_file.toLatin1().constData());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!tgt.contains('.') && !libinfo.values("QMAKE_PRL_CONFIG").contains("lib_bundle")) {
|
|
|
|
fprintf(stderr, "Error: %s defines QMAKE_PRL_TARGET without extension\n",
|
|
|
|
meta_file.toLatin1().constData());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (origName.isEmpty()) {
|
|
|
|
// We got a .prl file as input, replace it with an actual library.
|
|
|
|
int off = qMax(origFile.lastIndexOf('/'), origFile.lastIndexOf('\\')) + 1;
|
|
|
|
debug_msg(1, " Replacing library reference %s with %s",
|
|
|
|
origFile.mid(off).toLatin1().constData(),
|
|
|
|
tgt.toQString().toLatin1().constData());
|
|
|
|
origFile.replace(off, 1000, tgt.toQString());
|
|
|
|
} else if (tgt != origName) {
|
|
|
|
// We got an actual library as input, and found the wrong .prl for it.
|
|
|
|
debug_msg(2, "Mismatched meta file %s (want %s, got %s)",
|
|
|
|
meta_file.toLatin1().constData(),
|
|
|
|
origName.toLatin1().constData(), tgt.toLatin1().constData());
|
|
|
|
return false;
|
|
|
|
}
|
2015-09-22 10:47:19 +00:00
|
|
|
project->values("QMAKE_CURRENT_PRL_LIBS") = libinfo.values("QMAKE_PRL_LIBS");
|
|
|
|
ProStringList &defs = project->values("DEFINES");
|
|
|
|
const ProStringList &prl_defs = project->values("PRL_EXPORT_DEFINES");
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProString &def : libinfo.values("QMAKE_PRL_DEFINES"))
|
2015-09-22 10:47:19 +00:00
|
|
|
if (!defs.contains(def) && prl_defs.contains(def))
|
|
|
|
defs.append(def);
|
|
|
|
QString mf = fileFixify(meta_file);
|
|
|
|
if (!project->values("QMAKE_PRL_INTERNAL_FILES").contains(mf))
|
|
|
|
project->values("QMAKE_PRL_INTERNAL_FILES").append(mf);
|
|
|
|
if (!project->values("QMAKE_INTERNAL_INCLUDED_FILES").contains(mf))
|
|
|
|
project->values("QMAKE_INTERNAL_INCLUDED_FILES").append(mf);
|
|
|
|
return true;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-08-20 11:04:39 +00:00
|
|
|
MakefileGenerator::filterIncludedFiles(const char *var)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList &inputs = project->values(var);
|
2015-12-24 13:38:21 +00:00
|
|
|
auto isIncluded = [this](const ProString &input) {
|
|
|
|
return QMakeSourceFileInfo::included(input.toQString()) > 0;
|
|
|
|
};
|
|
|
|
inputs.erase(std::remove_if(inputs.begin(), inputs.end(),
|
|
|
|
isIncluded),
|
|
|
|
inputs.end());
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2014-11-17 19:55:33 +00:00
|
|
|
static QString
|
|
|
|
qv(const ProString &val)
|
|
|
|
{
|
|
|
|
return ' ' + QMakeEvaluator::quoteValue(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static QString
|
|
|
|
qv(const ProStringList &val)
|
|
|
|
{
|
|
|
|
QString ret;
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProString &v : val)
|
2014-11-17 19:55:33 +00:00
|
|
|
ret += qv(v);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
void
|
|
|
|
MakefileGenerator::writePrlFile(QTextStream &t)
|
|
|
|
{
|
|
|
|
QString bdir = Option::output_dir;
|
|
|
|
if(bdir.isEmpty())
|
|
|
|
bdir = qmake_getpwd();
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "QMAKE_PRL_BUILD_DIR =" << qv(bdir) << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "QMAKE_PRO_INPUT =" << qv(project->projectFile().section('/', -1)) << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
if(!project->isEmpty("QMAKE_ABSOLUTE_SOURCE_PATH"))
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "QMAKE_PRL_SOURCE_DIR =" << qv(project->first("QMAKE_ABSOLUTE_SOURCE_PATH")) << Qt::endl;
|
|
|
|
t << "QMAKE_PRL_TARGET =" << qv(project->first("LIB_TARGET")) << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!project->isEmpty("PRL_EXPORT_DEFINES"))
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "QMAKE_PRL_DEFINES =" << qv(project->values("PRL_EXPORT_DEFINES")) << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!project->isEmpty("PRL_EXPORT_CFLAGS"))
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "QMAKE_PRL_CFLAGS =" << qv(project->values("PRL_EXPORT_CFLAGS")) << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!project->isEmpty("PRL_EXPORT_CXXFLAGS"))
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "QMAKE_PRL_CXXFLAGS =" << qv(project->values("PRL_EXPORT_CXXFLAGS")) << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!project->isEmpty("CONFIG"))
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "QMAKE_PRL_CONFIG =" << qv(project->values("CONFIG")) << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!project->isEmpty("TARGET_VERSION_EXT"))
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "QMAKE_PRL_VERSION = " << project->first("TARGET_VERSION_EXT") << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
else if(!project->isEmpty("VERSION"))
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "QMAKE_PRL_VERSION = " << project->first("VERSION") << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
if(project->isActiveConfig("staticlib") || project->isActiveConfig("explicitlib")) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList libs;
|
2018-10-08 16:24:14 +00:00
|
|
|
if (!project->isActiveConfig("staticlib"))
|
|
|
|
libs << "LIBS" << "QMAKE_LIBS";
|
|
|
|
else
|
|
|
|
libs << "LIBS" << "LIBS_PRIVATE" << "QMAKE_LIBS" << "QMAKE_LIBS_PRIVATE";
|
2014-11-17 19:55:33 +00:00
|
|
|
t << "QMAKE_PRL_LIBS =";
|
2012-09-06 10:21:38 +00:00
|
|
|
for (ProStringList::Iterator it = libs.begin(); it != libs.end(); ++it)
|
2014-11-17 19:55:33 +00:00
|
|
|
t << qv(project->values((*it).toKey()));
|
2019-04-30 10:51:36 +00:00
|
|
|
t << Qt::endl;
|
2019-06-20 09:46:49 +00:00
|
|
|
|
|
|
|
t << "QMAKE_PRL_LIBS_FOR_CMAKE = ";
|
|
|
|
QString sep;
|
|
|
|
for (ProStringList::Iterator it = libs.begin(); it != libs.end(); ++it) {
|
|
|
|
t << sep << project->values((*it).toKey()).join(';').replace('\\', "\\\\");
|
|
|
|
sep = ';';
|
|
|
|
}
|
2019-07-05 13:37:50 +00:00
|
|
|
t << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
MakefileGenerator::writeProjectMakefile()
|
|
|
|
{
|
|
|
|
QTextStream t(&Option::output);
|
|
|
|
|
|
|
|
//header
|
|
|
|
writeHeader(t);
|
|
|
|
|
|
|
|
QList<SubTarget*> targets;
|
|
|
|
{
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList builds = project->values("BUILDS");
|
2016-02-01 08:49:22 +00:00
|
|
|
targets.reserve(builds.size());
|
2012-09-06 10:21:38 +00:00
|
|
|
for (ProStringList::Iterator it = builds.begin(); it != builds.end(); ++it) {
|
2011-04-27 10:05:43 +00:00
|
|
|
SubTarget *st = new SubTarget;
|
|
|
|
targets.append(st);
|
|
|
|
st->makefile = "$(MAKEFILE)." + (*it);
|
2012-09-06 10:21:38 +00:00
|
|
|
st->name = (*it).toQString();
|
|
|
|
const ProKey tkey(*it + ".target");
|
|
|
|
st->target = (project->isEmpty(tkey) ? (*it) : project->first(tkey)).toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(project->isActiveConfig("build_all")) {
|
2013-07-04 09:25:16 +00:00
|
|
|
t << "first: all\n";
|
2011-04-27 10:05:43 +00:00
|
|
|
QList<SubTarget*>::Iterator it;
|
|
|
|
|
|
|
|
//install
|
|
|
|
t << "install: ";
|
2019-05-24 09:29:03 +00:00
|
|
|
for (SubTarget *s : qAsConst(targets))
|
|
|
|
t << s->target << '-';
|
|
|
|
t << "install " << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
//uninstall
|
|
|
|
t << "uninstall: ";
|
|
|
|
for(it = targets.begin(); it != targets.end(); ++it)
|
|
|
|
t << (*it)->target << "-uninstall ";
|
2019-04-30 10:51:36 +00:00
|
|
|
t << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "first: " << targets.first()->target << Qt::endl
|
2013-07-04 09:25:16 +00:00
|
|
|
<< "install: " << targets.first()->target << "-install\n"
|
|
|
|
<< "uninstall: " << targets.first()->target << "-uninstall\n";
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
writeSubTargets(t, targets, SubTargetsNoFlags);
|
|
|
|
if(!project->isActiveConfig("no_autoqmake")) {
|
2014-11-24 18:51:32 +00:00
|
|
|
QString mkf = escapeDependencyPath(fileFixify(Option::output.fileName()));
|
2011-04-27 10:05:43 +00:00
|
|
|
for(QList<SubTarget*>::Iterator it = targets.begin(); it != targets.end(); ++it)
|
2019-04-30 10:51:36 +00:00
|
|
|
t << escapeDependencyPath((*it)->makefile) << ": " << mkf << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
qDeleteAll(targets);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
MakefileGenerator::write()
|
|
|
|
{
|
|
|
|
if(!project)
|
|
|
|
return false;
|
|
|
|
writePrlFile();
|
|
|
|
if(Option::qmake_mode == Option::QMAKE_GENERATE_MAKEFILE || //write makefile
|
|
|
|
Option::qmake_mode == Option::QMAKE_GENERATE_PROJECT) {
|
|
|
|
QTextStream t(&Option::output);
|
|
|
|
if(!writeMakefile(t)) {
|
|
|
|
#if 1
|
|
|
|
warn_msg(WarnLogic, "Unable to generate output for: %s [TEMPLATE %s]",
|
|
|
|
Option::output.fileName().toLatin1().constData(),
|
|
|
|
project->first("TEMPLATE").toLatin1().constData());
|
|
|
|
if(Option::output.exists())
|
|
|
|
Option::output.remove();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString
|
|
|
|
MakefileGenerator::prlFileName(bool fixify)
|
|
|
|
{
|
2018-08-23 18:21:24 +00:00
|
|
|
QString ret = project->first("PRL_TARGET") + Option::prl_ext;
|
2011-04-27 10:05:43 +00:00
|
|
|
if(fixify) {
|
|
|
|
if(!project->isEmpty("DESTDIR"))
|
2012-09-06 10:21:38 +00:00
|
|
|
ret.prepend(project->first("DESTDIR").toQString());
|
2015-04-13 19:18:36 +00:00
|
|
|
ret = fileFixify(ret, FileFixifyBackwards);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MakefileGenerator::writePrlFile()
|
|
|
|
{
|
|
|
|
if((Option::qmake_mode == Option::QMAKE_GENERATE_MAKEFILE ||
|
|
|
|
Option::qmake_mode == Option::QMAKE_GENERATE_PRL)
|
|
|
|
&& project->values("QMAKE_FAILED_REQUIREMENTS").isEmpty()
|
|
|
|
&& project->isActiveConfig("create_prl")
|
|
|
|
&& (project->first("TEMPLATE") == "lib"
|
2019-06-03 12:59:16 +00:00
|
|
|
|| project->first("TEMPLATE") == "vclib"
|
|
|
|
|| project->first("TEMPLATE") == "aux")
|
2011-04-20 17:47:49 +00:00
|
|
|
&& (!project->isActiveConfig("plugin") || project->isActiveConfig("static"))) { //write prl file
|
2011-04-27 10:05:43 +00:00
|
|
|
QString local_prl = prlFileName();
|
|
|
|
QString prl = fileFixify(local_prl);
|
|
|
|
mkdir(fileInfo(local_prl).path());
|
|
|
|
QFile ft(local_prl);
|
|
|
|
if(ft.open(QIODevice::WriteOnly)) {
|
|
|
|
project->values("ALL_DEPS").append(prl);
|
|
|
|
project->values("QMAKE_INTERNAL_PRL_FILE").append(prl);
|
2015-04-23 11:43:30 +00:00
|
|
|
project->values("QMAKE_DISTCLEAN").append(prl);
|
2011-04-27 10:05:43 +00:00
|
|
|
QTextStream t(&ft);
|
|
|
|
writePrlFile(t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-08-20 11:04:39 +00:00
|
|
|
MakefileGenerator::writeObj(QTextStream &t, const char *src)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &srcl = project->values(src);
|
|
|
|
const ProStringList objl = createObjectList(srcl);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList::ConstIterator oit = objl.begin();
|
|
|
|
ProStringList::ConstIterator sit = srcl.begin();
|
2016-02-04 14:12:03 +00:00
|
|
|
QLatin1String stringSrc("$src");
|
|
|
|
QLatin1String stringObj("$obj");
|
2011-04-27 10:05:43 +00:00
|
|
|
for(;sit != srcl.end() && oit != objl.end(); ++oit, ++sit) {
|
|
|
|
if((*sit).isEmpty())
|
|
|
|
continue;
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
QString srcf = (*sit).toQString();
|
|
|
|
QString dstf = (*oit).toQString();
|
|
|
|
t << escapeDependencyPath(dstf) << ": " << escapeDependencyPath(srcf)
|
2018-06-08 14:00:44 +00:00
|
|
|
<< " " << finalizeDependencyPaths(findDependencies(srcf)).join(" \\\n\t\t");
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2014-11-03 16:13:17 +00:00
|
|
|
ProKey comp;
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProString &compiler : project->values("QMAKE_BUILTIN_COMPILERS")) {
|
Distinguish between Objective-C and Objective-C++ sources
Instead of lumping both Objective-C (.m) and Objective-C++ (.mm) sources
into the same pile, passing them on to the same compiler as for C++ (CXX),
with the C++ flags (CXXFLAGS), we follow Apple's lead and treat them as
variants of the C and C++ languages separately, so that Objective-C
sources are built with CC and with CFLAGS, and Objective-C++ sources
with CXX, and CXXFLAGS.
This lets us remove a lot of duplicated flags and definitions from the
QMAKE_OBJECTIVE_CFLAGS variable, which in 99% of the cases just matched
the C++ equivalent. The remaining Objective-C/C++ flags are added to
CFLAGS/CXXFLAGS, as the compiler will just ignore them when running in
C/C++ mode. This matches Xcode, which also doesn't have a separate build
setting for Objective-C/C++ flags.
The Makefile qmake generator has been rewritten to support Objective-C/C++
fully, by not assuming that we're just iterating over the C and C++
extensions when dealing with compilation rules, precompiled headers, etc.
There's some duplicated logic in this code, as inherent by qmake's already
duplicated code paths, but this can be cleaned up when C++11 support is
mandatory and we can use lambda functions.
Task-number: QTBUG-36575
Change-Id: I4f06576d5f49e939333a2e03d965da54119e5e31
Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@theqtcompany.com>
2015-10-02 11:54:33 +00:00
|
|
|
// Unfortunately we were not consistent about the C++ naming
|
|
|
|
ProString extensionSuffix = compiler;
|
|
|
|
if (extensionSuffix == "CXX")
|
|
|
|
extensionSuffix = ProString("CPP");
|
|
|
|
|
|
|
|
// Nor the C naming
|
|
|
|
ProString compilerSuffix = compiler;
|
|
|
|
if (compilerSuffix == "C")
|
|
|
|
compilerSuffix = ProString("CC");
|
|
|
|
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProString &extension : project->values(ProKey("QMAKE_EXT_" + extensionSuffix))) {
|
Distinguish between Objective-C and Objective-C++ sources
Instead of lumping both Objective-C (.m) and Objective-C++ (.mm) sources
into the same pile, passing them on to the same compiler as for C++ (CXX),
with the C++ flags (CXXFLAGS), we follow Apple's lead and treat them as
variants of the C and C++ languages separately, so that Objective-C
sources are built with CC and with CFLAGS, and Objective-C++ sources
with CXX, and CXXFLAGS.
This lets us remove a lot of duplicated flags and definitions from the
QMAKE_OBJECTIVE_CFLAGS variable, which in 99% of the cases just matched
the C++ equivalent. The remaining Objective-C/C++ flags are added to
CFLAGS/CXXFLAGS, as the compiler will just ignore them when running in
C/C++ mode. This matches Xcode, which also doesn't have a separate build
setting for Objective-C/C++ flags.
The Makefile qmake generator has been rewritten to support Objective-C/C++
fully, by not assuming that we're just iterating over the C and C++
extensions when dealing with compilation rules, precompiled headers, etc.
There's some duplicated logic in this code, as inherent by qmake's already
duplicated code paths, but this can be cleaned up when C++11 support is
mandatory and we can use lambda functions.
Task-number: QTBUG-36575
Change-Id: I4f06576d5f49e939333a2e03d965da54119e5e31
Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@theqtcompany.com>
2015-10-02 11:54:33 +00:00
|
|
|
if ((*sit).endsWith(extension)) {
|
|
|
|
comp = ProKey("QMAKE_RUN_" + compilerSuffix);
|
|
|
|
break;
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
Distinguish between Objective-C and Objective-C++ sources
Instead of lumping both Objective-C (.m) and Objective-C++ (.mm) sources
into the same pile, passing them on to the same compiler as for C++ (CXX),
with the C++ flags (CXXFLAGS), we follow Apple's lead and treat them as
variants of the C and C++ languages separately, so that Objective-C
sources are built with CC and with CFLAGS, and Objective-C++ sources
with CXX, and CXXFLAGS.
This lets us remove a lot of duplicated flags and definitions from the
QMAKE_OBJECTIVE_CFLAGS variable, which in 99% of the cases just matched
the C++ equivalent. The remaining Objective-C/C++ flags are added to
CFLAGS/CXXFLAGS, as the compiler will just ignore them when running in
C/C++ mode. This matches Xcode, which also doesn't have a separate build
setting for Objective-C/C++ flags.
The Makefile qmake generator has been rewritten to support Objective-C/C++
fully, by not assuming that we're just iterating over the C and C++
extensions when dealing with compilation rules, precompiled headers, etc.
There's some duplicated logic in this code, as inherent by qmake's already
duplicated code paths, but this can be cleaned up when C++11 support is
mandatory and we can use lambda functions.
Task-number: QTBUG-36575
Change-Id: I4f06576d5f49e939333a2e03d965da54119e5e31
Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@theqtcompany.com>
2015-10-02 11:54:33 +00:00
|
|
|
|
|
|
|
if (!comp.isNull())
|
|
|
|
break;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
Distinguish between Objective-C and Objective-C++ sources
Instead of lumping both Objective-C (.m) and Objective-C++ (.mm) sources
into the same pile, passing them on to the same compiler as for C++ (CXX),
with the C++ flags (CXXFLAGS), we follow Apple's lead and treat them as
variants of the C and C++ languages separately, so that Objective-C
sources are built with CC and with CFLAGS, and Objective-C++ sources
with CXX, and CXXFLAGS.
This lets us remove a lot of duplicated flags and definitions from the
QMAKE_OBJECTIVE_CFLAGS variable, which in 99% of the cases just matched
the C++ equivalent. The remaining Objective-C/C++ flags are added to
CFLAGS/CXXFLAGS, as the compiler will just ignore them when running in
C/C++ mode. This matches Xcode, which also doesn't have a separate build
setting for Objective-C/C++ flags.
The Makefile qmake generator has been rewritten to support Objective-C/C++
fully, by not assuming that we're just iterating over the C and C++
extensions when dealing with compilation rules, precompiled headers, etc.
There's some duplicated logic in this code, as inherent by qmake's already
duplicated code paths, but this can be cleaned up when C++11 support is
mandatory and we can use lambda functions.
Task-number: QTBUG-36575
Change-Id: I4f06576d5f49e939333a2e03d965da54119e5e31
Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@theqtcompany.com>
2015-10-02 11:54:33 +00:00
|
|
|
|
2014-11-03 16:13:17 +00:00
|
|
|
if (comp.isEmpty())
|
2011-04-27 10:05:43 +00:00
|
|
|
comp = "QMAKE_RUN_CC";
|
2014-11-03 16:13:17 +00:00
|
|
|
if (!project->isEmpty(comp)) {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString p = var(comp);
|
2011-04-27 10:05:43 +00:00
|
|
|
p.replace(stringSrc, escapeFilePath(srcf));
|
2012-09-06 10:21:38 +00:00
|
|
|
p.replace(stringObj, escapeFilePath(dstf));
|
2011-04-27 10:05:43 +00:00
|
|
|
t << "\n\t" << p;
|
|
|
|
}
|
2019-04-30 10:51:36 +00:00
|
|
|
t << Qt::endl << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QString
|
|
|
|
MakefileGenerator::filePrefixRoot(const QString &root, const QString &path)
|
|
|
|
{
|
2014-11-13 17:02:02 +00:00
|
|
|
QString ret(path);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(path.length() > 2 && path[1] == ':') //c:\foo
|
2014-11-13 17:02:02 +00:00
|
|
|
ret.insert(2, root);
|
|
|
|
else
|
|
|
|
ret.prepend(root);
|
|
|
|
while (ret.endsWith('\\'))
|
|
|
|
ret.chop(1);
|
2011-04-27 10:05:43 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-09-06 10:21:38 +00:00
|
|
|
MakefileGenerator::writeInstalls(QTextStream &t, bool noBuild)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
QString rm_dir_contents("-$(DEL_FILE)");
|
|
|
|
if (!isWindowsShell()) //ick
|
|
|
|
rm_dir_contents = "-$(DEL_FILE) -r";
|
|
|
|
|
|
|
|
QString all_installs, all_uninstalls;
|
2012-08-07 15:25:00 +00:00
|
|
|
QSet<QString> made_dirs, removed_dirs;
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &l = project->values("INSTALLS");
|
|
|
|
for (ProStringList::ConstIterator it = l.begin(); it != l.end(); ++it) {
|
|
|
|
const ProKey pvar(*it + ".path");
|
|
|
|
const ProStringList &installConfigValues = project->values(ProKey(*it + ".CONFIG"));
|
|
|
|
if (installConfigValues.indexOf("no_path") == -1 &&
|
|
|
|
installConfigValues.indexOf("dummy_install") == -1 &&
|
2011-04-27 10:05:43 +00:00
|
|
|
project->values(pvar).isEmpty()) {
|
|
|
|
warn_msg(WarnLogic, "%s is not defined: install target not created\n", pvar.toLatin1().constData());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool do_default = true;
|
2016-01-14 12:01:39 +00:00
|
|
|
const QString root = installRoot();
|
2012-08-07 15:14:39 +00:00
|
|
|
QString dst;
|
2012-09-06 10:21:38 +00:00
|
|
|
if (installConfigValues.indexOf("no_path") == -1 &&
|
|
|
|
installConfigValues.indexOf("dummy_install") == -1) {
|
2015-02-06 14:30:02 +00:00
|
|
|
dst = fileFixify(project->first(pvar).toQString(), FileFixifyAbsolute, false);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!dst.endsWith(Option::dir_sep))
|
|
|
|
dst += Option::dir_sep;
|
|
|
|
}
|
|
|
|
|
2012-08-07 15:14:39 +00:00
|
|
|
QStringList tmp, inst, uninst;
|
2011-04-27 10:05:43 +00:00
|
|
|
//other
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList tmp2 = project->values(ProKey(*it + ".extra"));
|
|
|
|
if (tmp2.isEmpty())
|
|
|
|
tmp2 = project->values(ProKey(*it + ".commands")); //to allow compatible name
|
|
|
|
if (!tmp2.isEmpty()) {
|
2011-04-27 10:05:43 +00:00
|
|
|
do_default = false;
|
2012-05-18 18:00:23 +00:00
|
|
|
inst << tmp2.join(' ');
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
//masks
|
2012-09-06 10:21:38 +00:00
|
|
|
tmp2 = findFilesInVPATH(project->values(ProKey(*it + ".files")), VPATH_NoFixify);
|
|
|
|
tmp = fileFixify(tmp2.toQStringList(), FileFixifyAbsolute);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!tmp.isEmpty()) {
|
|
|
|
do_default = false;
|
2012-09-06 10:21:38 +00:00
|
|
|
QString base_path = project->first(ProKey(*it + ".base")).toQString();
|
2012-08-07 15:25:00 +00:00
|
|
|
if (!base_path.isEmpty()) {
|
|
|
|
base_path = Option::fixPathToTargetOS(base_path, false, true);
|
|
|
|
if (!base_path.endsWith(Option::dir_sep))
|
|
|
|
base_path += Option::dir_sep;
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
for(QStringList::Iterator wild_it = tmp.begin(); wild_it != tmp.end(); ++wild_it) {
|
|
|
|
QString wild = Option::fixPathToTargetOS((*wild_it), false, false);
|
|
|
|
QString dirstr = qmake_getpwd(), filestr = wild;
|
|
|
|
int slsh = filestr.lastIndexOf(Option::dir_sep);
|
|
|
|
if(slsh != -1) {
|
|
|
|
dirstr = filestr.left(slsh+1);
|
|
|
|
filestr.remove(0, slsh+1);
|
|
|
|
}
|
|
|
|
if(!dirstr.endsWith(Option::dir_sep))
|
|
|
|
dirstr += Option::dir_sep;
|
2012-08-07 15:25:00 +00:00
|
|
|
QString dst_dir = dst;
|
|
|
|
if (!base_path.isEmpty()) {
|
|
|
|
if (!dirstr.startsWith(base_path)) {
|
|
|
|
warn_msg(WarnLogic, "File %s in install rule %s does not start with base %s",
|
2012-09-06 10:21:38 +00:00
|
|
|
qPrintable(wild), qPrintable((*it).toQString()),
|
|
|
|
qPrintable(base_path));
|
2012-08-07 15:25:00 +00:00
|
|
|
} else {
|
|
|
|
QString dir_sfx = dirstr.mid(base_path.length());
|
|
|
|
dst_dir += dir_sfx;
|
|
|
|
if (!dir_sfx.isEmpty() && !made_dirs.contains(dir_sfx)) {
|
|
|
|
made_dirs.insert(dir_sfx);
|
|
|
|
QString tmp_dst = fileFixify(dst_dir, FileFixifyAbsolute, false);
|
|
|
|
tmp_dst.chop(1);
|
|
|
|
inst << mkdir_p_asstring(filePrefixRoot(root, tmp_dst));
|
|
|
|
for (int i = dst.length(); i < dst_dir.length(); i++) {
|
|
|
|
if (dst_dir.at(i) == Option::dir_sep) {
|
|
|
|
QString subd = dst_dir.left(i);
|
|
|
|
if (!removed_dirs.contains(subd)) {
|
|
|
|
removed_dirs.insert(subd);
|
|
|
|
tmp_dst = fileFixify(subd, FileFixifyAbsolute, false);
|
|
|
|
uninst << "-$(DEL_DIR) "
|
|
|
|
+ escapeFilePath(filePrefixRoot(root, tmp_dst));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
bool is_target = (wild == fileFixify(var("TARGET"), FileFixifyAbsolute));
|
2018-12-03 07:35:28 +00:00
|
|
|
const bool noStrip = installConfigValues.contains("nostrip");
|
2011-04-27 10:05:43 +00:00
|
|
|
if(is_target || exists(wild)) { //real file or target
|
|
|
|
QFileInfo fi(fileInfo(wild));
|
2012-08-07 15:25:00 +00:00
|
|
|
QString dst_file = filePrefixRoot(root, dst_dir);
|
2017-03-01 11:41:48 +00:00
|
|
|
if (!dst_file.endsWith(Option::dir_sep))
|
|
|
|
dst_file += Option::dir_sep;
|
|
|
|
dst_file += fi.fileName();
|
2011-04-27 10:05:43 +00:00
|
|
|
QString cmd;
|
2017-05-02 12:44:44 +00:00
|
|
|
if (is_target || (!fi.isDir() && fi.isExecutable()))
|
2019-05-23 08:58:30 +00:00
|
|
|
cmd = QLatin1String("$(QINSTALL_PROGRAM)");
|
2011-04-27 10:05:43 +00:00
|
|
|
else
|
2019-05-23 08:58:30 +00:00
|
|
|
cmd = QLatin1String("$(QINSTALL)");
|
2012-08-07 15:14:39 +00:00
|
|
|
cmd += " " + escapeFilePath(wild) + " " + escapeFilePath(dst_file);
|
|
|
|
inst << cmd;
|
2018-12-03 07:35:28 +00:00
|
|
|
if (!noStrip && !project->isActiveConfig("debug_info") && !project->isActiveConfig("nostrip") &&
|
2011-04-27 10:05:43 +00:00
|
|
|
!fi.isDir() && fi.isExecutable() && !project->isEmpty("QMAKE_STRIP"))
|
2012-08-07 15:14:39 +00:00
|
|
|
inst << QString("-") + var("QMAKE_STRIP") + " " +
|
2012-08-07 15:25:00 +00:00
|
|
|
escapeFilePath(filePrefixRoot(root, fileFixify(dst_dir + filestr, FileFixifyAbsolute, false)));
|
|
|
|
uninst.append(rm_dir_contents + " " + escapeFilePath(filePrefixRoot(root, fileFixify(dst_dir + filestr, FileFixifyAbsolute, false))));
|
2011-04-27 10:05:43 +00:00
|
|
|
continue;
|
|
|
|
}
|
2014-11-24 15:02:38 +00:00
|
|
|
QString local_dirstr = Option::normalizePath(dirstr);
|
2014-04-29 10:42:54 +00:00
|
|
|
QStringList files = QDir(local_dirstr).entryList(QStringList(filestr),
|
|
|
|
QDir::NoDotAndDotDot | QDir::AllEntries);
|
2011-04-27 10:05:43 +00:00
|
|
|
if (installConfigValues.contains("no_check_exist") && files.isEmpty()) {
|
2012-08-07 15:25:00 +00:00
|
|
|
QString dst_file = filePrefixRoot(root, dst_dir);
|
2017-03-01 11:41:48 +00:00
|
|
|
if (!dst_file.endsWith(Option::dir_sep))
|
|
|
|
dst_file += Option::dir_sep;
|
|
|
|
dst_file += filestr;
|
2017-05-02 12:44:44 +00:00
|
|
|
QString cmd;
|
|
|
|
if (installConfigValues.contains("executable"))
|
2019-05-23 08:58:30 +00:00
|
|
|
cmd = QLatin1String("$(QINSTALL_PROGRAM)");
|
2017-05-02 12:44:44 +00:00
|
|
|
else
|
2019-05-23 08:58:30 +00:00
|
|
|
cmd = QLatin1String("$(QINSTALL)");
|
2012-08-07 15:14:39 +00:00
|
|
|
cmd += " " + escapeFilePath(wild) + " " + escapeFilePath(dst_file);
|
|
|
|
inst << cmd;
|
2012-08-07 15:25:00 +00:00
|
|
|
uninst.append(rm_dir_contents + " " + escapeFilePath(filePrefixRoot(root, fileFixify(dst_dir + filestr, FileFixifyAbsolute, false))));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
for(int x = 0; x < files.count(); x++) {
|
|
|
|
QString file = files[x];
|
2012-08-07 15:25:00 +00:00
|
|
|
uninst.append(rm_dir_contents + " " + escapeFilePath(filePrefixRoot(root, fileFixify(dst_dir + file, FileFixifyAbsolute, false))));
|
2011-04-27 10:05:43 +00:00
|
|
|
QFileInfo fi(fileInfo(dirstr + file));
|
2012-08-07 15:25:00 +00:00
|
|
|
QString dst_file = filePrefixRoot(root, fileFixify(dst_dir, FileFixifyAbsolute, false));
|
2017-03-01 11:41:48 +00:00
|
|
|
if (!dst_file.endsWith(Option::dir_sep))
|
|
|
|
dst_file += Option::dir_sep;
|
|
|
|
dst_file += fi.fileName();
|
2019-05-23 08:58:30 +00:00
|
|
|
QString cmd = QLatin1String("$(QINSTALL) ") +
|
2012-08-07 15:14:39 +00:00
|
|
|
escapeFilePath(dirstr + file) + " " + escapeFilePath(dst_file);
|
|
|
|
inst << cmd;
|
2018-12-03 07:35:28 +00:00
|
|
|
if (!noStrip && !project->isActiveConfig("debug_info") && !project->isActiveConfig("nostrip") &&
|
2011-04-27 10:05:43 +00:00
|
|
|
!fi.isDir() && fi.isExecutable() && !project->isEmpty("QMAKE_STRIP"))
|
2012-08-07 15:14:39 +00:00
|
|
|
inst << QString("-") + var("QMAKE_STRIP") + " " +
|
2012-08-07 15:25:00 +00:00
|
|
|
escapeFilePath(filePrefixRoot(root, fileFixify(dst_dir + file, FileFixifyAbsolute, false)));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-08-07 15:14:39 +00:00
|
|
|
QString target;
|
2011-04-27 10:05:43 +00:00
|
|
|
//default?
|
2012-08-07 14:35:11 +00:00
|
|
|
if (do_default)
|
2012-09-06 10:21:38 +00:00
|
|
|
target = defaultInstall((*it).toQString());
|
2012-08-07 15:14:39 +00:00
|
|
|
else
|
|
|
|
target = inst.join("\n\t");
|
2012-05-18 18:00:23 +00:00
|
|
|
QString puninst = project->values(ProKey(*it + ".uninstall")).join(' ');
|
2012-08-07 14:35:11 +00:00
|
|
|
if (!puninst.isEmpty())
|
|
|
|
uninst << puninst;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
if (!target.isEmpty() || installConfigValues.indexOf("dummy_install") != -1) {
|
|
|
|
if (noBuild || installConfigValues.indexOf("no_build") != -1)
|
2011-04-27 10:05:43 +00:00
|
|
|
t << "install_" << (*it) << ":";
|
|
|
|
else if(project->isActiveConfig("build_all"))
|
|
|
|
t << "install_" << (*it) << ": all";
|
|
|
|
else
|
|
|
|
t << "install_" << (*it) << ": first";
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &deps = project->values(ProKey(*it + ".depends"));
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!deps.isEmpty()) {
|
2012-09-06 10:21:38 +00:00
|
|
|
for (ProStringList::ConstIterator dep_it = deps.begin(); dep_it != deps.end(); ++dep_it) {
|
|
|
|
QString targ = var(ProKey(*dep_it + ".target"));
|
2011-04-27 10:05:43 +00:00
|
|
|
if(targ.isEmpty())
|
2012-09-06 10:21:38 +00:00
|
|
|
targ = (*dep_it).toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
t << " " << escapeDependencyPath(targ);
|
|
|
|
}
|
|
|
|
}
|
2012-04-25 15:12:53 +00:00
|
|
|
t << " FORCE\n\t";
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &dirs = project->values(pvar);
|
|
|
|
for (ProStringList::ConstIterator pit = dirs.begin(); pit != dirs.end(); ++pit) {
|
|
|
|
QString tmp_dst = fileFixify((*pit).toQString(), FileFixifyAbsolute, false);
|
2011-04-27 10:05:43 +00:00
|
|
|
t << mkdir_p_asstring(filePrefixRoot(root, tmp_dst)) << "\n\t";
|
|
|
|
}
|
2019-04-30 10:51:36 +00:00
|
|
|
t << target << Qt::endl << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!uninst.isEmpty()) {
|
2012-08-07 14:35:11 +00:00
|
|
|
t << "uninstall_" << (*it) << ": FORCE";
|
|
|
|
for (int i = uninst.size(); --i >= 0; )
|
|
|
|
t << "\n\t" << uninst.at(i);
|
2015-02-06 14:30:02 +00:00
|
|
|
t << "\n\t-$(DEL_DIR) " << escapeFilePath(filePrefixRoot(root, dst)) << " \n\n";
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2019-04-30 10:51:36 +00:00
|
|
|
t << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
if (installConfigValues.indexOf("no_default_install") == -1) {
|
2011-04-27 10:05:43 +00:00
|
|
|
all_installs += QString("install_") + (*it) + " ";
|
|
|
|
if(!uninst.isEmpty())
|
|
|
|
all_uninstalls += "uninstall_" + (*it) + " ";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
debug_msg(1, "no definition for install %s: install target not created",(*it).toLatin1().constData());
|
|
|
|
}
|
|
|
|
}
|
2015-02-06 14:30:02 +00:00
|
|
|
t << "install:" << depVar("INSTALLDEPS") << ' ' << all_installs
|
|
|
|
<< " FORCE\n\nuninstall: " << all_uninstalls << depVar("UNINSTALLDEPS")
|
2012-04-25 15:12:53 +00:00
|
|
|
<< " FORCE\n\n";
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QString
|
2013-12-07 19:35:18 +00:00
|
|
|
MakefileGenerator::var(const ProKey &var) const
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
return val(project->values(var));
|
|
|
|
}
|
|
|
|
|
2015-02-06 14:30:02 +00:00
|
|
|
QString
|
|
|
|
MakefileGenerator::fileVar(const ProKey &var) const
|
|
|
|
{
|
|
|
|
return val(escapeFilePaths(project->values(var)));
|
|
|
|
}
|
|
|
|
|
|
|
|
QString
|
|
|
|
MakefileGenerator::fileVarList(const ProKey &var) const
|
|
|
|
{
|
|
|
|
return valList(escapeFilePaths(project->values(var)));
|
|
|
|
}
|
|
|
|
|
|
|
|
QString
|
|
|
|
MakefileGenerator::depVar(const ProKey &var) const
|
|
|
|
{
|
|
|
|
return val(escapeDependencyPaths(project->values(var)));
|
|
|
|
}
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
QString
|
2013-12-07 19:35:18 +00:00
|
|
|
MakefileGenerator::val(const ProStringList &varList) const
|
2012-09-06 10:21:38 +00:00
|
|
|
{
|
|
|
|
return valGlue(varList, "", " ", "");
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
QString
|
2013-12-07 19:35:18 +00:00
|
|
|
MakefileGenerator::val(const QStringList &varList) const
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
return valGlue(varList, "", " ", "");
|
|
|
|
}
|
|
|
|
|
|
|
|
QString
|
2013-12-07 19:35:18 +00:00
|
|
|
MakefileGenerator::varGlue(const ProKey &var, const QString &before, const QString &glue, const QString &after) const
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
return valGlue(project->values(var), before, glue, after);
|
|
|
|
}
|
|
|
|
|
2015-02-06 14:30:02 +00:00
|
|
|
QString
|
|
|
|
MakefileGenerator::fileVarGlue(const ProKey &var, const QString &before, const QString &glue, const QString &after) const
|
|
|
|
{
|
|
|
|
return valGlue(escapeFilePaths(project->values(var)), before, glue, after);
|
|
|
|
}
|
|
|
|
|
2012-07-12 10:08:42 +00:00
|
|
|
QString
|
2014-11-14 20:12:56 +00:00
|
|
|
MakefileGenerator::fixFileVarGlue(const ProKey &var, const QString &before, const QString &glue, const QString &after) const
|
2012-07-12 10:08:42 +00:00
|
|
|
{
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList varList;
|
2016-02-01 08:49:22 +00:00
|
|
|
const auto values = project->values(var);
|
|
|
|
varList.reserve(values.size());
|
|
|
|
for (const ProString &val : values)
|
2012-09-06 10:21:38 +00:00
|
|
|
varList << escapeFilePath(Option::fixPathToTargetOS(val.toQString()));
|
2012-07-12 10:08:42 +00:00
|
|
|
return valGlue(varList, before, glue, after);
|
|
|
|
}
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
QString
|
2013-12-07 19:35:18 +00:00
|
|
|
MakefileGenerator::valGlue(const ProStringList &varList, const QString &before, const QString &glue, const QString &after) const
|
2012-09-06 10:21:38 +00:00
|
|
|
{
|
|
|
|
QString ret;
|
|
|
|
for (ProStringList::ConstIterator it = varList.begin(); it != varList.end(); ++it) {
|
|
|
|
if (!(*it).isEmpty()) {
|
|
|
|
if (!ret.isEmpty())
|
|
|
|
ret += glue;
|
|
|
|
ret += (*it).toQString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret.isEmpty() ? QString("") : before + ret + after;
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
QString
|
2013-12-07 19:35:18 +00:00
|
|
|
MakefileGenerator::valGlue(const QStringList &varList, const QString &before, const QString &glue, const QString &after) const
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
QString ret;
|
|
|
|
for(QStringList::ConstIterator it = varList.begin(); it != varList.end(); ++it) {
|
|
|
|
if(!(*it).isEmpty()) {
|
|
|
|
if(!ret.isEmpty())
|
|
|
|
ret += glue;
|
|
|
|
ret += (*it);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret.isEmpty() ? QString("") : before + ret + after;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QString
|
2013-12-07 19:35:18 +00:00
|
|
|
MakefileGenerator::varList(const ProKey &var) const
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
return valList(project->values(var));
|
|
|
|
}
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
QString
|
2013-12-07 19:35:18 +00:00
|
|
|
MakefileGenerator::valList(const ProStringList &varList) const
|
2012-09-06 10:21:38 +00:00
|
|
|
{
|
|
|
|
return valGlue(varList, "", " \\\n\t\t", "");
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
QString
|
2013-12-07 19:35:18 +00:00
|
|
|
MakefileGenerator::valList(const QStringList &varList) const
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
return valGlue(varList, "", " \\\n\t\t", "");
|
|
|
|
}
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList
|
|
|
|
MakefileGenerator::createObjectList(const ProStringList &sources)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList ret;
|
2011-04-27 10:05:43 +00:00
|
|
|
QString objdir;
|
|
|
|
if(!project->values("OBJECTS_DIR").isEmpty())
|
2012-09-06 10:21:38 +00:00
|
|
|
objdir = project->first("OBJECTS_DIR").toQString();
|
|
|
|
for (ProStringList::ConstIterator it = sources.begin(); it != sources.end(); ++it) {
|
|
|
|
QString sfn = (*it).toQString();
|
2014-11-24 15:02:38 +00:00
|
|
|
QFileInfo fi(fileInfo(Option::normalizePath(sfn)));
|
2011-04-27 10:05:43 +00:00
|
|
|
QString dir;
|
2012-08-16 11:02:30 +00:00
|
|
|
if (project->isActiveConfig("object_parallel_to_source")) {
|
2011-12-05 14:50:43 +00:00
|
|
|
// The source paths are relative to the output dir, but we need source-relative paths
|
2015-04-13 19:18:36 +00:00
|
|
|
QString sourceRelativePath = fileFixify(sfn, FileFixifyBackwards);
|
2011-12-05 14:50:43 +00:00
|
|
|
|
|
|
|
if (sourceRelativePath.startsWith(".." + Option::dir_sep))
|
|
|
|
sourceRelativePath = fileFixify(sourceRelativePath, FileFixifyAbsolute);
|
|
|
|
|
|
|
|
if (QDir::isAbsolutePath(sourceRelativePath))
|
|
|
|
sourceRelativePath.remove(0, sourceRelativePath.indexOf(Option::dir_sep) + 1);
|
|
|
|
|
|
|
|
dir = objdir; // We still respect OBJECTS_DIR
|
|
|
|
|
|
|
|
int lastDirSepPosition = sourceRelativePath.lastIndexOf(Option::dir_sep);
|
|
|
|
if (lastDirSepPosition != -1)
|
2020-05-30 21:29:21 +00:00
|
|
|
dir += QStringView{sourceRelativePath}.left(lastDirSepPosition + 1);
|
2011-12-05 14:50:43 +00:00
|
|
|
|
|
|
|
if (!noIO()) {
|
|
|
|
// Ensure that the final output directory of each object exists
|
2015-04-13 19:18:36 +00:00
|
|
|
QString outRelativePath = fileFixify(dir, FileFixifyBackwards);
|
2020-01-10 14:43:45 +00:00
|
|
|
if (!outRelativePath.isEmpty() && !mkdir(outRelativePath))
|
2011-12-05 14:50:43 +00:00
|
|
|
warn_msg(WarnLogic, "Cannot create directory '%s'", outRelativePath.toLatin1().constData());
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
|
|
|
dir = objdir;
|
|
|
|
}
|
|
|
|
ret.append(dir + fi.completeBaseName() + Option::obj_ext);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-11-20 15:20:16 +00:00
|
|
|
ReplaceExtraCompilerCacheKey::ReplaceExtraCompilerCacheKey(
|
|
|
|
const QString &v, const QStringList &i, const QStringList &o, MakefileGenerator::ReplaceFor s)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
static QString doubleColon = QLatin1String("::");
|
|
|
|
|
|
|
|
hash = 0;
|
|
|
|
pwd = qmake_getpwd();
|
|
|
|
var = v;
|
|
|
|
{
|
|
|
|
QStringList il = i;
|
|
|
|
il.sort();
|
|
|
|
in = il.join(doubleColon);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
QStringList ol = o;
|
|
|
|
ol.sort();
|
|
|
|
out = ol.join(doubleColon);
|
|
|
|
}
|
2014-11-20 15:20:16 +00:00
|
|
|
forShell = s;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ReplaceExtraCompilerCacheKey::operator==(const ReplaceExtraCompilerCacheKey &f) const
|
|
|
|
{
|
|
|
|
return (hashCode() == f.hashCode() &&
|
2014-11-20 15:20:16 +00:00
|
|
|
f.forShell == forShell &&
|
2011-04-27 10:05:43 +00:00
|
|
|
f.in == in &&
|
|
|
|
f.out == out &&
|
|
|
|
f.var == var &&
|
|
|
|
f.pwd == pwd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QString
|
2014-11-20 15:20:16 +00:00
|
|
|
MakefileGenerator::replaceExtraCompilerVariables(
|
|
|
|
const QString &orig_var, const QStringList &in, const QStringList &out, ReplaceFor forShell)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
//lazy cache
|
2014-11-20 15:20:16 +00:00
|
|
|
ReplaceExtraCompilerCacheKey cacheKey(orig_var, in, out, forShell);
|
2011-04-27 10:05:43 +00:00
|
|
|
QString cacheVal = extraCompilerVariablesCache.value(cacheKey);
|
|
|
|
if(!cacheVal.isNull())
|
|
|
|
return cacheVal;
|
|
|
|
|
|
|
|
//do the work
|
|
|
|
QString ret = orig_var;
|
2020-04-03 15:11:36 +00:00
|
|
|
QRegularExpression reg_var("\\$\\{.*\\}", QRegularExpression::InvertedGreedinessOption);
|
|
|
|
QRegularExpressionMatch match;
|
|
|
|
for (int rep = 0; (match = reg_var.match(ret, rep)).hasMatch(); ) {
|
|
|
|
rep = match.capturedStart();
|
2011-04-27 10:05:43 +00:00
|
|
|
QStringList val;
|
2020-04-03 15:11:36 +00:00
|
|
|
const ProString var(ret.mid(rep + 2, match.capturedLength() - 3));
|
2011-04-27 10:05:43 +00:00
|
|
|
bool filePath = false;
|
|
|
|
if(val.isEmpty() && var.startsWith(QLatin1String("QMAKE_VAR_"))) {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey varname = var.mid(10).toKey();
|
|
|
|
val += project->values(varname).toQStringList();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
if(val.isEmpty() && var.startsWith(QLatin1String("QMAKE_VAR_FIRST_"))) {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey varname = var.mid(16).toKey();
|
|
|
|
val += project->first(varname).toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(val.isEmpty() && !in.isEmpty()) {
|
|
|
|
if(var.startsWith(QLatin1String("QMAKE_FUNC_FILE_IN_"))) {
|
|
|
|
filePath = true;
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey funcname = var.mid(19).toKey();
|
|
|
|
val += project->expand(funcname, QList<ProStringList>() << ProStringList(in));
|
2011-04-27 10:05:43 +00:00
|
|
|
} else if(var == QLatin1String("QMAKE_FILE_BASE") || var == QLatin1String("QMAKE_FILE_IN_BASE")) {
|
2016-04-29 09:38:08 +00:00
|
|
|
filePath = true;
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int i = 0; i < in.size(); ++i) {
|
2014-11-24 15:02:38 +00:00
|
|
|
QFileInfo fi(fileInfo(Option::normalizePath(in.at(i))));
|
2011-04-27 10:05:43 +00:00
|
|
|
QString base = fi.completeBaseName();
|
|
|
|
if(base.isNull())
|
|
|
|
base = fi.fileName();
|
|
|
|
val += base;
|
|
|
|
}
|
2016-04-29 09:34:14 +00:00
|
|
|
} else if (var == QLatin1String("QMAKE_FILE_EXT") || var == QLatin1String("QMAKE_FILE_IN_EXT")) {
|
2011-04-27 10:05:43 +00:00
|
|
|
filePath = true;
|
|
|
|
for(int i = 0; i < in.size(); ++i) {
|
2014-11-24 15:02:38 +00:00
|
|
|
QFileInfo fi(fileInfo(Option::normalizePath(in.at(i))));
|
2011-04-27 10:05:43 +00:00
|
|
|
QString ext;
|
|
|
|
// Ensure complementarity with QMAKE_FILE_BASE
|
|
|
|
int baseLen = fi.completeBaseName().length();
|
|
|
|
if(baseLen == 0)
|
|
|
|
ext = fi.fileName();
|
|
|
|
else
|
|
|
|
ext = fi.fileName().remove(0, baseLen);
|
|
|
|
val += ext;
|
|
|
|
}
|
2016-04-29 09:34:14 +00:00
|
|
|
} else if (var == QLatin1String("QMAKE_FILE_IN_NAME")) {
|
|
|
|
filePath = true;
|
|
|
|
for (int i = 0; i < in.size(); ++i)
|
|
|
|
val += fileInfo(Option::normalizePath(in.at(i))).fileName();
|
2011-04-27 10:05:43 +00:00
|
|
|
} else if(var == QLatin1String("QMAKE_FILE_PATH") || var == QLatin1String("QMAKE_FILE_IN_PATH")) {
|
|
|
|
filePath = true;
|
|
|
|
for(int i = 0; i < in.size(); ++i)
|
2014-11-24 15:02:38 +00:00
|
|
|
val += fileInfo(Option::normalizePath(in.at(i))).path();
|
2011-04-27 10:05:43 +00:00
|
|
|
} else if(var == QLatin1String("QMAKE_FILE_NAME") || var == QLatin1String("QMAKE_FILE_IN")) {
|
|
|
|
filePath = true;
|
|
|
|
for(int i = 0; i < in.size(); ++i)
|
2014-11-24 15:02:38 +00:00
|
|
|
val += fileInfo(Option::normalizePath(in.at(i))).filePath();
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(val.isEmpty() && !out.isEmpty()) {
|
|
|
|
if(var.startsWith(QLatin1String("QMAKE_FUNC_FILE_OUT_"))) {
|
|
|
|
filePath = true;
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey funcname = var.mid(20).toKey();
|
|
|
|
val += project->expand(funcname, QList<ProStringList>() << ProStringList(out));
|
2016-04-29 09:34:14 +00:00
|
|
|
} else if (var == QLatin1String("QMAKE_FILE_OUT_PATH")) {
|
|
|
|
filePath = true;
|
|
|
|
for (int i = 0; i < out.size(); ++i)
|
|
|
|
val += fileInfo(Option::normalizePath(out.at(i))).path();
|
2011-04-27 10:05:43 +00:00
|
|
|
} else if(var == QLatin1String("QMAKE_FILE_OUT")) {
|
|
|
|
filePath = true;
|
|
|
|
for(int i = 0; i < out.size(); ++i)
|
2014-11-24 15:02:38 +00:00
|
|
|
val += fileInfo(Option::normalizePath(out.at(i))).filePath();
|
2011-04-27 10:05:43 +00:00
|
|
|
} else if(var == QLatin1String("QMAKE_FILE_OUT_BASE")) {
|
2016-04-29 09:38:08 +00:00
|
|
|
filePath = true;
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int i = 0; i < out.size(); ++i) {
|
2014-11-24 15:02:38 +00:00
|
|
|
QFileInfo fi(fileInfo(Option::normalizePath(out.at(i))));
|
2011-04-27 10:05:43 +00:00
|
|
|
QString base = fi.completeBaseName();
|
|
|
|
if(base.isNull())
|
|
|
|
base = fi.fileName();
|
|
|
|
val += base;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(val.isEmpty() && var.startsWith(QLatin1String("QMAKE_FUNC_"))) {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey funcname = var.mid(11).toKey();
|
|
|
|
val += project->expand(funcname, QList<ProStringList>() << ProStringList(in) << ProStringList(out));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!val.isEmpty()) {
|
|
|
|
QString fullVal;
|
2014-11-20 15:20:16 +00:00
|
|
|
if (filePath && forShell != NoShell) {
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int i = 0; i < val.size(); ++i) {
|
|
|
|
if(!fullVal.isEmpty())
|
|
|
|
fullVal += " ";
|
2014-11-20 15:20:16 +00:00
|
|
|
if (forShell == LocalShell)
|
2015-02-06 14:30:02 +00:00
|
|
|
fullVal += IoUtils::shellQuote(Option::fixPathToLocalOS(val.at(i), false));
|
2014-11-20 15:20:16 +00:00
|
|
|
else
|
2015-02-06 14:30:02 +00:00
|
|
|
fullVal += escapeFilePath(Option::fixPathToTargetOS(val.at(i), false));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
} else {
|
2012-05-18 18:00:23 +00:00
|
|
|
fullVal = val.join(' ');
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2020-04-03 15:11:36 +00:00
|
|
|
ret.replace(match.capturedStart(), match.capturedLength(), fullVal);
|
2020-06-29 12:14:20 +00:00
|
|
|
rep += fullVal.length();
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
2020-04-03 15:11:36 +00:00
|
|
|
rep = match.capturedEnd();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//cache the value
|
|
|
|
extraCompilerVariablesCache.insert(cacheKey, ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2012-09-06 10:21:38 +00:00
|
|
|
MakefileGenerator::verifyExtraCompiler(const ProString &comp, const QString &file_unfixed)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
if(noIO())
|
|
|
|
return false;
|
2014-11-24 15:02:38 +00:00
|
|
|
const QString file = Option::normalizePath(file_unfixed);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &config = project->values(ProKey(comp + ".CONFIG"));
|
|
|
|
if (config.indexOf("moc_verify") != -1) {
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!file.isNull()) {
|
|
|
|
QMakeSourceFileInfo::addSourceFile(file, QMakeSourceFileInfo::SEEK_MOCS);
|
|
|
|
if(!mocable(file)) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
project->values("MOCABLES").append(file);
|
|
|
|
}
|
|
|
|
}
|
2012-09-06 10:21:38 +00:00
|
|
|
} else if (config.indexOf("function_verify") != -1) {
|
2014-11-27 13:49:16 +00:00
|
|
|
ProString tmp_out = project->first(ProKey(comp + ".output"));
|
2011-04-27 10:05:43 +00:00
|
|
|
if(tmp_out.isEmpty())
|
|
|
|
return false;
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList verify_function = project->values(ProKey(comp + ".verify_function"));
|
2011-04-27 10:05:43 +00:00
|
|
|
if(verify_function.isEmpty())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for(int i = 0; i < verify_function.size(); ++i) {
|
|
|
|
bool invert = false;
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString verify = verify_function.at(i);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(verify.at(0) == QLatin1Char('!')) {
|
|
|
|
invert = true;
|
|
|
|
verify = verify.mid(1);
|
|
|
|
}
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
if (config.indexOf("combine") != -1) {
|
|
|
|
bool pass = project->test(verify.toKey(), QList<ProStringList>() << ProStringList(tmp_out) << ProStringList(file));
|
2011-04-27 10:05:43 +00:00
|
|
|
if(invert)
|
|
|
|
pass = !pass;
|
|
|
|
if(!pass)
|
|
|
|
return false;
|
|
|
|
} else {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &tmp = project->values(ProKey(comp + ".input"));
|
|
|
|
for (ProStringList::ConstIterator it = tmp.begin(); it != tmp.end(); ++it) {
|
|
|
|
const ProStringList &inputs = project->values((*it).toKey());
|
|
|
|
for (ProStringList::ConstIterator input = inputs.begin(); input != inputs.end(); ++input) {
|
2011-04-27 10:05:43 +00:00
|
|
|
if((*input).isEmpty())
|
|
|
|
continue;
|
2012-09-06 10:21:38 +00:00
|
|
|
QString inpf = (*input).toQString();
|
2014-11-24 18:51:32 +00:00
|
|
|
QString in = fileFixify(inpf);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(in == file) {
|
2012-09-06 10:21:38 +00:00
|
|
|
bool pass = project->test(verify.toKey(),
|
2014-11-20 15:20:16 +00:00
|
|
|
QList<ProStringList>() << ProStringList(replaceExtraCompilerVariables(tmp_out.toQString(), inpf, QString(), NoShell)) <<
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList(file));
|
2011-04-27 10:05:43 +00:00
|
|
|
if(invert)
|
|
|
|
pass = !pass;
|
|
|
|
if(!pass)
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-09-06 10:21:38 +00:00
|
|
|
} else if (config.indexOf("verify") != -1) {
|
2014-11-27 13:49:16 +00:00
|
|
|
QString tmp_out = project->first(ProKey(comp + ".output")).toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
if(tmp_out.isEmpty())
|
|
|
|
return false;
|
2014-04-28 15:21:53 +00:00
|
|
|
const QString tmp_cmd = project->values(ProKey(comp + ".commands")).join(' ');
|
2012-09-06 10:21:38 +00:00
|
|
|
if (config.indexOf("combine") != -1) {
|
2014-11-20 15:20:16 +00:00
|
|
|
QString cmd = replaceExtraCompilerVariables(tmp_cmd, QString(), tmp_out, LocalShell);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(system(cmd.toLatin1().constData()))
|
|
|
|
return false;
|
|
|
|
} else {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &tmp = project->values(ProKey(comp + ".input"));
|
|
|
|
for (ProStringList::ConstIterator it = tmp.begin(); it != tmp.end(); ++it) {
|
|
|
|
const ProStringList &inputs = project->values((*it).toKey());
|
|
|
|
for (ProStringList::ConstIterator input = inputs.begin(); input != inputs.end(); ++input) {
|
2011-04-27 10:05:43 +00:00
|
|
|
if((*input).isEmpty())
|
|
|
|
continue;
|
2012-09-06 10:21:38 +00:00
|
|
|
QString inpf = (*input).toQString();
|
2014-11-24 18:51:32 +00:00
|
|
|
QString in = fileFixify(inpf);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(in == file) {
|
2014-11-20 15:20:16 +00:00
|
|
|
QString out = replaceExtraCompilerVariables(tmp_out, inpf, QString(), NoShell);
|
|
|
|
QString cmd = replaceExtraCompilerVariables(tmp_cmd, in, out, LocalShell);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(system(cmd.toLatin1().constData()))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MakefileGenerator::writeExtraTargets(QTextStream &t)
|
|
|
|
{
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &qut = project->values("QMAKE_EXTRA_TARGETS");
|
|
|
|
for (ProStringList::ConstIterator it = qut.begin(); it != qut.end(); ++it) {
|
|
|
|
QString targ = var(ProKey(*it + ".target")),
|
|
|
|
cmd = var(ProKey(*it + ".commands")), deps;
|
2011-04-27 10:05:43 +00:00
|
|
|
if(targ.isEmpty())
|
2012-09-06 10:21:38 +00:00
|
|
|
targ = (*it).toQString();
|
|
|
|
const ProStringList &deplist = project->values(ProKey(*it + ".depends"));
|
|
|
|
for (ProStringList::ConstIterator dep_it = deplist.begin(); dep_it != deplist.end(); ++dep_it) {
|
|
|
|
QString dep = var(ProKey(*dep_it + ".target"));
|
2011-04-27 10:05:43 +00:00
|
|
|
if(dep.isEmpty())
|
2012-09-06 10:21:38 +00:00
|
|
|
dep = (*dep_it).toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
deps += " " + escapeDependencyPath(dep);
|
|
|
|
}
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &config = project->values(ProKey(*it + ".CONFIG"));
|
|
|
|
if (config.indexOf("fix_target") != -1)
|
2015-04-13 19:18:36 +00:00
|
|
|
targ = fileFixify(targ, FileFixifyFromOutdir);
|
2012-09-06 10:21:38 +00:00
|
|
|
if (config.indexOf("phony") != -1)
|
2012-04-25 15:12:53 +00:00
|
|
|
deps += QLatin1String(" FORCE");
|
2011-04-27 10:05:43 +00:00
|
|
|
t << escapeDependencyPath(targ) << ":" << deps;
|
|
|
|
if(!cmd.isEmpty())
|
|
|
|
t << "\n\t" << cmd;
|
2019-04-30 10:51:36 +00:00
|
|
|
t << Qt::endl << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-21 17:50:01 +00:00
|
|
|
static QStringList splitDeps(const QString &indeps, bool lineMode)
|
|
|
|
{
|
|
|
|
if (!lineMode)
|
|
|
|
return indeps.simplified().split(' ');
|
2020-02-25 16:19:30 +00:00
|
|
|
QStringList deps = indeps.split('\n', Qt::SkipEmptyParts);
|
2018-03-21 17:50:01 +00:00
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
for (auto &dep : deps) {
|
|
|
|
if (dep.endsWith(QLatin1Char('\r')))
|
|
|
|
dep.chop(1);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return deps;
|
|
|
|
}
|
|
|
|
|
2019-01-11 10:27:19 +00:00
|
|
|
QString MakefileGenerator::resolveDependency(const QDir &outDir, const QString &file)
|
|
|
|
{
|
2020-07-06 09:11:44 +00:00
|
|
|
const QList<QMakeLocalFileName> &depdirs = QMakeSourceFileInfo::dependencyPaths();
|
2019-01-11 10:27:19 +00:00
|
|
|
for (const auto &depdir : depdirs) {
|
|
|
|
const QString &local = depdir.local();
|
|
|
|
QString lf = outDir.absoluteFilePath(local + '/' + file);
|
|
|
|
if (exists(lf))
|
|
|
|
return lf;
|
2019-01-11 10:31:24 +00:00
|
|
|
|
|
|
|
if (resolveDependenciesInFrameworks) {
|
|
|
|
// Given a file like "QtWidgets/QWidget", try to resolve it
|
|
|
|
// as framework header "QtWidgets.framework/Headers/QWidget".
|
|
|
|
int cut = file.indexOf('/');
|
|
|
|
if (cut < 0 || cut + 1 >= file.size())
|
|
|
|
continue;
|
2020-05-30 21:29:21 +00:00
|
|
|
QStringView framework = QStringView{file}.left(cut);
|
|
|
|
QStringView include = QStringView(file).mid(cut + 1);
|
2019-01-11 10:31:24 +00:00
|
|
|
if (local.endsWith('/' + framework + ".framework/Headers")) {
|
|
|
|
lf = outDir.absoluteFilePath(local + '/' + include);
|
|
|
|
if (exists(lf))
|
|
|
|
return lf;
|
|
|
|
}
|
|
|
|
}
|
2019-01-11 10:27:19 +00:00
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2019-05-28 20:11:24 +00:00
|
|
|
void MakefileGenerator::callExtraCompilerDependCommand(const ProString &extraCompiler,
|
|
|
|
const QString &tmp_dep_cmd,
|
|
|
|
const QString &inpf,
|
|
|
|
const QString &tmp_out,
|
|
|
|
bool dep_lines,
|
2019-09-20 06:20:47 +00:00
|
|
|
QStringList *deps,
|
2020-01-02 12:51:19 +00:00
|
|
|
bool existingDepsOnly,
|
|
|
|
bool checkCommandAvailability)
|
2019-05-28 20:11:24 +00:00
|
|
|
{
|
|
|
|
char buff[256];
|
|
|
|
QString dep_cmd = replaceExtraCompilerVariables(tmp_dep_cmd, inpf, tmp_out, LocalShell);
|
2020-01-02 12:51:19 +00:00
|
|
|
if (checkCommandAvailability && !canExecute(dep_cmd))
|
|
|
|
return;
|
2020-01-02 13:28:39 +00:00
|
|
|
dep_cmd = QLatin1String("cd ")
|
|
|
|
+ IoUtils::shellQuote(Option::fixPathToLocalOS(Option::output_dir, false))
|
|
|
|
+ QLatin1String(" && ")
|
|
|
|
+ fixEnvVariables(dep_cmd);
|
2019-05-28 20:11:24 +00:00
|
|
|
if (FILE *proc = QT_POPEN(dep_cmd.toLatin1().constData(), QT_POPEN_READ)) {
|
|
|
|
QByteArray depData;
|
|
|
|
while (int read_in = feof(proc) ? 0 : (int)fread(buff, 1, 255, proc))
|
|
|
|
depData.append(buff, read_in);
|
|
|
|
QT_PCLOSE(proc);
|
|
|
|
const QString indeps = QString::fromLocal8Bit(depData);
|
|
|
|
if (indeps.isEmpty())
|
|
|
|
return;
|
|
|
|
QDir outDir(Option::output_dir);
|
|
|
|
QStringList dep_cmd_deps = splitDeps(indeps, dep_lines);
|
|
|
|
for (int i = 0; i < dep_cmd_deps.count(); ++i) {
|
|
|
|
QString &file = dep_cmd_deps[i];
|
|
|
|
const QString absFile = outDir.absoluteFilePath(file);
|
|
|
|
if (absFile == file) {
|
|
|
|
// already absolute; don't do any checks.
|
|
|
|
} else if (exists(absFile)) {
|
|
|
|
file = absFile;
|
|
|
|
} else {
|
|
|
|
const QString localFile = resolveDependency(outDir, file);
|
|
|
|
if (localFile.isEmpty()) {
|
|
|
|
if (exists(file)) {
|
|
|
|
warn_msg(WarnDeprecated, ".depend_command for extra compiler %s"
|
|
|
|
" prints paths relative to source directory",
|
|
|
|
extraCompiler.toLatin1().constData());
|
2019-09-20 06:20:47 +00:00
|
|
|
} else if (existingDepsOnly) {
|
|
|
|
file.clear();
|
2019-05-28 20:11:24 +00:00
|
|
|
} else {
|
|
|
|
file = absFile; // fallback for generated resources
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
file = localFile;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!file.isEmpty())
|
|
|
|
file = fileFixify(file);
|
|
|
|
}
|
|
|
|
deps->append(dep_cmd_deps);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
void
|
|
|
|
MakefileGenerator::writeExtraCompilerTargets(QTextStream &t)
|
|
|
|
{
|
|
|
|
QString clean_targets;
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &quc = project->values("QMAKE_EXTRA_COMPILERS");
|
|
|
|
for (ProStringList::ConstIterator it = quc.begin(); it != quc.end(); ++it) {
|
2018-03-21 17:50:01 +00:00
|
|
|
const ProStringList &config = project->values(ProKey(*it + ".CONFIG"));
|
2012-09-06 10:21:38 +00:00
|
|
|
QString tmp_out = fileFixify(project->first(ProKey(*it + ".output")).toQString(),
|
2015-04-13 19:18:36 +00:00
|
|
|
FileFixifyFromOutdir);
|
2014-04-28 15:21:53 +00:00
|
|
|
const QString tmp_cmd = project->values(ProKey(*it + ".commands")).join(' ');
|
2014-05-27 18:09:24 +00:00
|
|
|
const QString tmp_dep_cmd = project->values(ProKey(*it + ".depend_command")).join(' ');
|
2018-03-21 17:50:01 +00:00
|
|
|
const bool dep_lines = (config.indexOf("dep_lines") != -1);
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &vars = project->values(ProKey(*it + ".variables"));
|
2011-04-27 10:05:43 +00:00
|
|
|
if(tmp_out.isEmpty() || tmp_cmd.isEmpty())
|
|
|
|
continue;
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList tmp_inputs;
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &comp_inputs = project->values(ProKey(*it + ".input"));
|
|
|
|
for (ProStringList::ConstIterator it2 = comp_inputs.begin(); it2 != comp_inputs.end(); ++it2) {
|
|
|
|
const ProStringList &tmp = project->values((*it2).toKey());
|
|
|
|
for (ProStringList::ConstIterator input = tmp.begin(); input != tmp.end(); ++input) {
|
2014-11-24 18:51:32 +00:00
|
|
|
if (verifyExtraCompiler((*it), (*input).toQString()))
|
2011-04-27 10:05:43 +00:00
|
|
|
tmp_inputs.append((*input));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
t << "compiler_" << (*it) << "_make_all:";
|
2012-09-06 10:21:38 +00:00
|
|
|
if (config.indexOf("combine") != -1) {
|
2011-04-27 10:05:43 +00:00
|
|
|
// compilers with a combined input only have one output
|
2012-09-06 10:21:38 +00:00
|
|
|
QString input = project->first(ProKey(*it + ".output")).toQString();
|
2018-04-12 14:48:27 +00:00
|
|
|
t << ' ' << escapeDependencyPath(fileFixify(
|
|
|
|
replaceExtraCompilerVariables(tmp_out, input, QString(), NoShell),
|
|
|
|
FileFixifyFromOutdir));
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
2018-10-18 19:43:59 +00:00
|
|
|
for (ProStringList::ConstIterator input = tmp_inputs.cbegin(); input != tmp_inputs.cend(); ++input) {
|
2018-04-12 14:48:27 +00:00
|
|
|
t << ' ' << escapeDependencyPath(fileFixify(
|
|
|
|
replaceExtraCompilerVariables(tmp_out, (*input).toQString(), QString(), NoShell),
|
|
|
|
FileFixifyFromOutdir));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
2019-04-30 10:51:36 +00:00
|
|
|
t << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
if (config.indexOf("no_clean") == -1) {
|
2015-04-22 21:44:20 +00:00
|
|
|
QStringList raw_clean = project->values(ProKey(*it + ".clean")).toQStringList();
|
|
|
|
if (raw_clean.isEmpty())
|
|
|
|
raw_clean << tmp_out;
|
2015-04-22 21:49:22 +00:00
|
|
|
QString tmp_clean;
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const QString &rc : qAsConst(raw_clean))
|
2015-04-22 21:49:22 +00:00
|
|
|
tmp_clean += ' ' + escapeFilePath(Option::fixPathToTargetOS(rc));
|
2012-05-18 18:00:23 +00:00
|
|
|
QString tmp_clean_cmds = project->values(ProKey(*it + ".clean_commands")).join(' ');
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!tmp_inputs.isEmpty())
|
|
|
|
clean_targets += QString("compiler_" + (*it) + "_clean ");
|
|
|
|
t << "compiler_" << (*it) << "_clean:";
|
|
|
|
bool wrote_clean_cmds = false, wrote_clean = false;
|
|
|
|
if(tmp_clean_cmds.isEmpty()) {
|
|
|
|
wrote_clean_cmds = true;
|
|
|
|
} else if(tmp_clean_cmds.indexOf("${QMAKE_") == -1) {
|
|
|
|
t << "\n\t" << tmp_clean_cmds;
|
|
|
|
wrote_clean_cmds = true;
|
|
|
|
}
|
|
|
|
if(tmp_clean.indexOf("${QMAKE_") == -1) {
|
2015-04-22 21:49:22 +00:00
|
|
|
t << "\n\t-$(DEL_FILE)" << tmp_clean;
|
2011-04-27 10:05:43 +00:00
|
|
|
wrote_clean = true;
|
|
|
|
}
|
|
|
|
if(!wrote_clean_cmds || !wrote_clean) {
|
2014-11-24 20:11:00 +00:00
|
|
|
QStringList cleans;
|
2011-04-27 10:05:43 +00:00
|
|
|
const QString del_statement("-$(DEL_FILE)");
|
|
|
|
if(!wrote_clean) {
|
2014-11-24 20:11:00 +00:00
|
|
|
QStringList dels;
|
2018-10-18 19:43:59 +00:00
|
|
|
for (ProStringList::ConstIterator input = tmp_inputs.cbegin(); input != tmp_inputs.cend(); ++input) {
|
2014-11-24 20:11:00 +00:00
|
|
|
QString tinp = (*input).toQString();
|
|
|
|
QString out = replaceExtraCompilerVariables(tmp_out, tinp, QString(), NoShell);
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const QString &rc : qAsConst(raw_clean)) {
|
2018-04-12 14:48:27 +00:00
|
|
|
dels << ' ' + escapeFilePath(fileFixify(
|
|
|
|
replaceExtraCompilerVariables(rc, tinp, out, NoShell),
|
|
|
|
FileFixifyFromOutdir));
|
2012-09-06 10:21:38 +00:00
|
|
|
}
|
2014-11-24 20:11:00 +00:00
|
|
|
}
|
|
|
|
if(project->isActiveConfig("no_delete_multiple_files")) {
|
|
|
|
cleans = dels;
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
2014-11-24 20:11:00 +00:00
|
|
|
QString files;
|
2011-04-27 10:05:43 +00:00
|
|
|
const int commandlineLimit = 2047; // NT limit, expanded
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const QString &file : qAsConst(dels)) {
|
2011-04-27 10:05:43 +00:00
|
|
|
if(del_statement.length() + files.length() +
|
|
|
|
qMax(fixEnvVariables(file).length(), file.length()) > commandlineLimit) {
|
|
|
|
cleans.append(files);
|
|
|
|
files.clear();
|
|
|
|
}
|
2014-11-24 20:11:00 +00:00
|
|
|
files += file;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
if(!files.isEmpty())
|
|
|
|
cleans.append(files);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!cleans.isEmpty())
|
|
|
|
t << valGlue(cleans, "\n\t" + del_statement, "\n\t" + del_statement, "");
|
|
|
|
if(!wrote_clean_cmds) {
|
2018-10-18 19:43:59 +00:00
|
|
|
for (ProStringList::ConstIterator input = tmp_inputs.cbegin(); input != tmp_inputs.cend(); ++input) {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString tinp = (*input).toQString();
|
|
|
|
t << "\n\t" << replaceExtraCompilerVariables(tmp_clean_cmds, tinp,
|
2014-11-20 15:20:16 +00:00
|
|
|
replaceExtraCompilerVariables(tmp_out, tinp, QString(), NoShell), TargetShell);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-30 10:51:36 +00:00
|
|
|
t << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2019-09-16 11:18:23 +00:00
|
|
|
const bool existingDepsOnly = config.contains("dep_existing_only");
|
2012-09-06 10:21:38 +00:00
|
|
|
QStringList tmp_dep = project->values(ProKey(*it + ".depends")).toQStringList();
|
|
|
|
if (config.indexOf("combine") != -1) {
|
2020-04-03 15:11:36 +00:00
|
|
|
if (tmp_out.contains(QRegularExpression("(^|[^$])\\$\\{QMAKE_(?!VAR_)"))) {
|
2011-04-27 10:05:43 +00:00
|
|
|
warn_msg(WarnLogic, "QMAKE_EXTRA_COMPILERS(%s) with combine has variable output.",
|
|
|
|
(*it).toLatin1().constData());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
QStringList deps, inputs;
|
|
|
|
if(!tmp_dep.isEmpty())
|
2015-04-13 19:18:36 +00:00
|
|
|
deps += fileFixify(tmp_dep, FileFixifyFromOutdir);
|
2018-10-18 19:43:59 +00:00
|
|
|
for (ProStringList::ConstIterator input = tmp_inputs.cbegin(); input != tmp_inputs.cend(); ++input) {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString inpf = (*input).toQString();
|
|
|
|
deps += findDependencies(inpf);
|
|
|
|
inputs += Option::fixPathToTargetOS(inpf, false);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!tmp_dep_cmd.isEmpty() && doDepends()) {
|
2020-01-02 13:28:39 +00:00
|
|
|
callExtraCompilerDependCommand(*it, tmp_dep_cmd, inpf,
|
2019-09-20 06:20:47 +00:00
|
|
|
tmp_out, dep_lines, &deps, existingDepsOnly);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
for(int i = 0; i < inputs.size(); ) {
|
|
|
|
if(tmp_out == inputs.at(i))
|
|
|
|
inputs.removeAt(i);
|
|
|
|
else
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
for(int i = 0; i < deps.size(); ) {
|
|
|
|
if(tmp_out == deps.at(i))
|
|
|
|
deps.removeAt(i);
|
|
|
|
else
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
if (inputs.isEmpty())
|
|
|
|
continue;
|
|
|
|
|
2014-11-20 15:20:16 +00:00
|
|
|
QString out = replaceExtraCompilerVariables(tmp_out, QString(), QString(), NoShell);
|
|
|
|
QString cmd = replaceExtraCompilerVariables(tmp_cmd, inputs, QStringList() << out, TargetShell);
|
2018-04-12 14:48:27 +00:00
|
|
|
t << escapeDependencyPath(fileFixify(out, FileFixifyFromOutdir)) << ":";
|
2011-04-27 10:05:43 +00:00
|
|
|
// compiler.CONFIG+=explicit_dependencies means that ONLY compiler.depends gets to cause Makefile dependencies
|
2012-09-06 10:21:38 +00:00
|
|
|
if (config.indexOf("explicit_dependencies") != -1) {
|
2015-04-13 19:18:36 +00:00
|
|
|
t << " " << valList(escapeDependencyPaths(fileFixify(tmp_dep, FileFixifyFromOutdir)));
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
2018-06-08 14:00:44 +00:00
|
|
|
t << " " << valList(escapeDependencyPaths(inputs)) << " " << valList(finalizeDependencyPaths(deps));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "\n\t" << cmd << Qt::endl << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
continue;
|
|
|
|
}
|
2018-10-18 19:43:59 +00:00
|
|
|
for (ProStringList::ConstIterator input = tmp_inputs.cbegin(); input != tmp_inputs.cend(); ++input) {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString inpf = (*input).toQString();
|
2018-04-12 14:48:27 +00:00
|
|
|
QStringList deps;
|
|
|
|
deps << fileFixify(inpf, FileFixifyFromOutdir);
|
|
|
|
deps += findDependencies(inpf);
|
|
|
|
QString out = fileFixify(replaceExtraCompilerVariables(tmp_out, inpf, QString(), NoShell),
|
|
|
|
FileFixifyFromOutdir);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!tmp_dep.isEmpty()) {
|
2015-04-13 19:18:36 +00:00
|
|
|
QStringList pre_deps = fileFixify(tmp_dep, FileFixifyFromOutdir);
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int i = 0; i < pre_deps.size(); ++i)
|
2018-04-12 14:48:27 +00:00
|
|
|
deps << fileFixify(replaceExtraCompilerVariables(pre_deps.at(i), inpf, out, NoShell),
|
|
|
|
FileFixifyFromOutdir);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2015-05-06 14:25:15 +00:00
|
|
|
QString cmd = replaceExtraCompilerVariables(tmp_cmd, inpf, out, TargetShell);
|
2011-04-27 10:05:43 +00:00
|
|
|
// NOTE: The var -> QMAKE_COMP_var replace feature is unsupported, do not use!
|
2012-09-06 10:21:38 +00:00
|
|
|
for (ProStringList::ConstIterator it3 = vars.constBegin(); it3 != vars.constEnd(); ++it3)
|
2011-04-27 10:05:43 +00:00
|
|
|
cmd.replace("$(" + (*it3) + ")", "$(QMAKE_COMP_" + (*it3)+")");
|
|
|
|
if(!tmp_dep_cmd.isEmpty() && doDepends()) {
|
2020-01-02 13:28:39 +00:00
|
|
|
callExtraCompilerDependCommand(*it, tmp_dep_cmd, inpf,
|
2019-09-20 06:20:47 +00:00
|
|
|
tmp_out, dep_lines, &deps, existingDepsOnly);
|
2011-04-27 10:05:43 +00:00
|
|
|
//use the depend system to find includes of these included files
|
|
|
|
QStringList inc_deps;
|
|
|
|
for(int i = 0; i < deps.size(); ++i) {
|
2018-04-12 14:48:27 +00:00
|
|
|
const QString dep = fileFixify(deps.at(i), FileFixifyFromOutdir | FileFixifyAbsolute);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(QFile::exists(dep)) {
|
|
|
|
SourceFileType type = TYPE_UNKNOWN;
|
|
|
|
if(type == TYPE_UNKNOWN) {
|
|
|
|
for(QStringList::Iterator cit = Option::c_ext.begin();
|
|
|
|
cit != Option::c_ext.end(); ++cit) {
|
|
|
|
if(dep.endsWith((*cit))) {
|
|
|
|
type = TYPE_C;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(type == TYPE_UNKNOWN) {
|
|
|
|
for(QStringList::Iterator cppit = Option::cpp_ext.begin();
|
|
|
|
cppit != Option::cpp_ext.end(); ++cppit) {
|
|
|
|
if(dep.endsWith((*cppit))) {
|
|
|
|
type = TYPE_C;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(type == TYPE_UNKNOWN) {
|
|
|
|
for(QStringList::Iterator hit = Option::h_ext.begin();
|
|
|
|
type == TYPE_UNKNOWN && hit != Option::h_ext.end(); ++hit) {
|
|
|
|
if(dep.endsWith((*hit))) {
|
|
|
|
type = TYPE_C;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(type != TYPE_UNKNOWN) {
|
|
|
|
if(!QMakeSourceFileInfo::containsSourceFile(dep, type))
|
|
|
|
QMakeSourceFileInfo::addSourceFile(dep, type);
|
|
|
|
inc_deps += QMakeSourceFileInfo::dependencies(dep);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-04-12 14:48:27 +00:00
|
|
|
deps += fileFixify(inc_deps, FileFixifyFromOutdir);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
for(int i = 0; i < deps.size(); ) {
|
|
|
|
QString &dep = deps[i];
|
|
|
|
if(out == dep)
|
|
|
|
deps.removeAt(i);
|
|
|
|
else
|
|
|
|
++i;
|
|
|
|
}
|
2018-06-08 14:00:44 +00:00
|
|
|
t << escapeDependencyPath(out) << ": " << valList(finalizeDependencyPaths(deps)) << "\n\t"
|
2019-04-30 10:51:36 +00:00
|
|
|
<< cmd << Qt::endl << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "compiler_clean: " << clean_targets << Qt::endl << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MakefileGenerator::writeExtraCompilerVariables(QTextStream &t)
|
|
|
|
{
|
|
|
|
bool first = true;
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &quc = project->values("QMAKE_EXTRA_COMPILERS");
|
|
|
|
for (ProStringList::ConstIterator it = quc.begin(); it != quc.end(); ++it) {
|
|
|
|
const ProStringList &vars = project->values(ProKey(*it + ".variables"));
|
|
|
|
for (ProStringList::ConstIterator varit = vars.begin(); varit != vars.end(); ++varit) {
|
2011-04-27 10:05:43 +00:00
|
|
|
if(first) {
|
2013-07-04 09:25:16 +00:00
|
|
|
t << "\n####### Custom Compiler Variables\n";
|
2011-04-27 10:05:43 +00:00
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
t << "QMAKE_COMP_" << (*varit) << " = "
|
2019-04-30 10:51:36 +00:00
|
|
|
<< valList(project->values((*varit).toKey())) << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!first)
|
2019-04-30 10:51:36 +00:00
|
|
|
t << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MakefileGenerator::writeExtraVariables(QTextStream &t)
|
|
|
|
{
|
2019-04-30 10:51:36 +00:00
|
|
|
t << Qt::endl;
|
2012-01-09 18:25:44 +00:00
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList outlist;
|
|
|
|
const ProValueMap &vars = project->variables();
|
|
|
|
const ProStringList &exports = project->values("QMAKE_EXTRA_VARIABLES");
|
2017-11-21 19:37:31 +00:00
|
|
|
for (ProStringList::ConstIterator exp_it = exports.begin(); exp_it != exports.end(); ++exp_it) {
|
2020-04-15 08:52:51 +00:00
|
|
|
auto rx = QRegularExpression::fromWildcard((*exp_it).toQString(), Qt::CaseInsensitive);
|
2017-11-21 19:37:31 +00:00
|
|
|
for (ProValueMap::ConstIterator it = vars.begin(); it != vars.end(); ++it) {
|
2020-04-03 15:11:36 +00:00
|
|
|
if (rx.match(it.key().toQString()).hasMatch())
|
2012-05-18 18:00:23 +00:00
|
|
|
outlist << ("EXPORT_" + it.key() + " = " + it.value().join(' '));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
2012-01-09 18:25:44 +00:00
|
|
|
if (!outlist.isEmpty()) {
|
2013-07-04 09:25:16 +00:00
|
|
|
t << "####### Custom Variables\n";
|
2019-04-30 10:51:36 +00:00
|
|
|
t << outlist.join('\n') << Qt::endl << Qt::endl;
|
2012-01-09 18:25:44 +00:00
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2018-12-14 19:13:44 +00:00
|
|
|
// This is a more powerful alternative to the above function.
|
|
|
|
// It's meant to be internal, as one can make quite a mess with it.
|
|
|
|
void
|
|
|
|
MakefileGenerator::writeExportedVariables(QTextStream &t)
|
|
|
|
{
|
|
|
|
const auto &vars = project->values("QMAKE_EXPORTED_VARIABLES");
|
|
|
|
if (vars.isEmpty())
|
|
|
|
return;
|
|
|
|
for (const auto &exp : vars) {
|
|
|
|
const ProString &name = project->first(ProKey(exp + ".name"));
|
|
|
|
const ProString &value = project->first(ProKey(exp + ".value"));
|
|
|
|
if (!value.isEmpty())
|
2019-04-30 10:51:36 +00:00
|
|
|
t << name << " = " << value << Qt::endl;
|
2018-12-14 19:13:44 +00:00
|
|
|
else
|
|
|
|
t << name << " =\n";
|
|
|
|
}
|
2019-04-30 10:51:36 +00:00
|
|
|
t << Qt::endl;
|
2018-12-14 19:13:44 +00:00
|
|
|
}
|
|
|
|
|
2013-08-26 17:51:57 +00:00
|
|
|
bool
|
|
|
|
MakefileGenerator::writeDummyMakefile(QTextStream &t)
|
|
|
|
{
|
|
|
|
if (project->values("QMAKE_FAILED_REQUIREMENTS").isEmpty())
|
|
|
|
return false;
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "QMAKE = " << var("QMAKE_QMAKE") << Qt::endl;
|
2013-08-26 17:51:57 +00:00
|
|
|
const ProStringList &qut = project->values("QMAKE_EXTRA_TARGETS");
|
|
|
|
for (ProStringList::ConstIterator it = qut.begin(); it != qut.end(); ++it)
|
|
|
|
t << *it << " ";
|
|
|
|
t << "first all clean install distclean uninstall qmake_all:\n\t"
|
|
|
|
<< "@echo \"Some of the required modules ("
|
|
|
|
<< var("QMAKE_FAILED_REQUIREMENTS") << ") are not available.\"\n\t"
|
|
|
|
<< "@echo \"Skipped.\"\n\n";
|
|
|
|
writeMakeQmake(t);
|
|
|
|
t << "FORCE:\n\n";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
bool
|
|
|
|
MakefileGenerator::writeMakefile(QTextStream &t)
|
|
|
|
{
|
2013-07-04 09:25:16 +00:00
|
|
|
t << "####### Compile\n\n";
|
2011-04-27 10:05:43 +00:00
|
|
|
writeObj(t, "SOURCES");
|
|
|
|
writeObj(t, "GENERATED_SOURCES");
|
|
|
|
|
2013-07-04 09:25:16 +00:00
|
|
|
t << "####### Install\n\n";
|
2012-09-06 10:21:38 +00:00
|
|
|
writeInstalls(t);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2013-07-04 09:25:16 +00:00
|
|
|
t << "FORCE:\n\n";
|
2011-04-27 10:05:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-05-24 22:41:44 +00:00
|
|
|
void
|
|
|
|
MakefileGenerator::writeDefaultVariables(QTextStream &t)
|
|
|
|
{
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "QMAKE = " << var("QMAKE_QMAKE") << Qt::endl;
|
|
|
|
t << "DEL_FILE = " << var("QMAKE_DEL_FILE") << Qt::endl;
|
|
|
|
t << "CHK_DIR_EXISTS= " << var("QMAKE_CHK_DIR_EXISTS") << Qt::endl;
|
|
|
|
t << "MKDIR = " << var("QMAKE_MKDIR") << Qt::endl;
|
|
|
|
t << "COPY = " << var("QMAKE_COPY") << Qt::endl;
|
|
|
|
t << "COPY_FILE = " << var("QMAKE_COPY_FILE") << Qt::endl;
|
|
|
|
t << "COPY_DIR = " << var("QMAKE_COPY_DIR") << Qt::endl;
|
|
|
|
t << "INSTALL_FILE = " << var("QMAKE_INSTALL_FILE") << Qt::endl;
|
|
|
|
t << "INSTALL_PROGRAM = " << var("QMAKE_INSTALL_PROGRAM") << Qt::endl;
|
|
|
|
t << "INSTALL_DIR = " << var("QMAKE_INSTALL_DIR") << Qt::endl;
|
|
|
|
t << "QINSTALL = " << var("QMAKE_QMAKE") << " -install qinstall" << Qt::endl;
|
|
|
|
t << "QINSTALL_PROGRAM = " << var("QMAKE_QMAKE") << " -install qinstall -exe" << Qt::endl;
|
|
|
|
t << "DEL_FILE = " << var("QMAKE_DEL_FILE") << Qt::endl;
|
|
|
|
t << "SYMLINK = " << var("QMAKE_SYMBOLIC_LINK") << Qt::endl;
|
|
|
|
t << "DEL_DIR = " << var("QMAKE_DEL_DIR") << Qt::endl;
|
|
|
|
t << "MOVE = " << var("QMAKE_MOVE") << Qt::endl;
|
2014-05-24 22:41:44 +00:00
|
|
|
}
|
|
|
|
|
2017-01-03 18:10:14 +00:00
|
|
|
QString MakefileGenerator::buildArgs(bool withExtra)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
QString ret;
|
2012-08-09 16:54:40 +00:00
|
|
|
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const QString &arg : qAsConst(Option::globals->qmake_args))
|
2015-05-21 12:03:01 +00:00
|
|
|
ret += " " + shellQuote(arg);
|
2017-01-03 18:10:14 +00:00
|
|
|
if (withExtra && !Option::globals->qmake_extra_args.isEmpty()) {
|
|
|
|
ret += " --";
|
|
|
|
for (const QString &arg : qAsConst(Option::globals->qmake_extra_args))
|
|
|
|
ret += " " + shellQuote(arg);
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
//could get stored argv, but then it would have more options than are
|
|
|
|
//probably necesary this will try to guess the bare minimum..
|
2019-07-30 12:31:50 +00:00
|
|
|
QString MakefileGenerator::fullBuildArgs()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2019-07-30 12:31:50 +00:00
|
|
|
QString ret;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
//output
|
2014-11-24 18:51:32 +00:00
|
|
|
QString ofile = fileFixify(Option::output.fileName());
|
2020-04-03 09:49:27 +00:00
|
|
|
if (!ofile.isEmpty() && ofile != project->first("QMAKE_MAKEFILE").toQStringView())
|
2011-04-27 10:05:43 +00:00
|
|
|
ret += " -o " + escapeFilePath(ofile);
|
|
|
|
|
|
|
|
//inputs
|
2015-04-13 15:12:28 +00:00
|
|
|
ret += " " + escapeFilePath(fileFixify(project->projectFile()));
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2016-08-23 15:39:33 +00:00
|
|
|
// general options and arguments
|
2017-01-03 18:10:14 +00:00
|
|
|
ret += buildArgs(true);
|
2016-08-23 15:39:33 +00:00
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MakefileGenerator::writeHeader(QTextStream &t)
|
|
|
|
{
|
2013-07-04 09:25:16 +00:00
|
|
|
t << "#############################################################################\n";
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "# Makefile for building: " << escapeFilePath(var("TARGET")) << Qt::endl;
|
2013-07-11 13:14:13 +00:00
|
|
|
t << "# Generated by qmake (" QMAKE_VERSION_STR ") (Qt " QT_VERSION_STR ")\n";
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "# Project: " << fileFixify(project->projectFile()) << Qt::endl;
|
|
|
|
t << "# Template: " << var("TEMPLATE") << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!project->isActiveConfig("build_pass"))
|
2019-07-30 12:31:50 +00:00
|
|
|
t << "# Command: " << var("QMAKE_QMAKE") << fullBuildArgs() << Qt::endl;
|
2013-07-04 09:25:16 +00:00
|
|
|
t << "#############################################################################\n";
|
2019-04-30 10:51:36 +00:00
|
|
|
t << Qt::endl;
|
2012-12-04 20:17:24 +00:00
|
|
|
QString ofile = Option::fixPathToTargetOS(Option::output.fileName());
|
|
|
|
if (ofile.lastIndexOf(Option::dir_sep) != -1)
|
|
|
|
ofile.remove(0, ofile.lastIndexOf(Option::dir_sep) +1);
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "MAKEFILE = " << escapeFilePath(ofile) << Qt::endl << Qt::endl;
|
2018-11-05 14:13:22 +00:00
|
|
|
t << "EQ = =\n\n";
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QList<MakefileGenerator::SubTarget*>
|
|
|
|
MakefileGenerator::findSubDirsSubTargets() const
|
|
|
|
{
|
|
|
|
QList<SubTarget*> targets;
|
|
|
|
{
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &subdirs = project->values("SUBDIRS");
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int subdir = 0; subdir < subdirs.size(); ++subdir) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString ofile = subdirs[subdir];
|
|
|
|
QString oname = ofile.toQString();
|
|
|
|
QString fixedSubdir = oname;
|
2020-04-03 15:11:36 +00:00
|
|
|
fixedSubdir.replace(QRegularExpression("[^a-zA-Z0-9_]"),"-");
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
SubTarget *st = new SubTarget;
|
2012-09-06 10:21:38 +00:00
|
|
|
st->name = oname;
|
2011-04-27 10:05:43 +00:00
|
|
|
targets.append(st);
|
|
|
|
|
|
|
|
bool fromFile = false;
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey fkey(fixedSubdir + ".file");
|
|
|
|
const ProKey skey(fixedSubdir + ".subdir");
|
|
|
|
if (!project->isEmpty(fkey)) {
|
|
|
|
if (!project->isEmpty(skey))
|
2011-04-27 10:05:43 +00:00
|
|
|
warn_msg(WarnLogic, "Cannot assign both file and subdir for subdir %s",
|
|
|
|
subdirs[subdir].toLatin1().constData());
|
2012-09-06 10:21:38 +00:00
|
|
|
ofile = project->first(fkey);
|
2011-04-27 10:05:43 +00:00
|
|
|
fromFile = true;
|
2012-09-06 10:21:38 +00:00
|
|
|
} else if (!project->isEmpty(skey)) {
|
|
|
|
ofile = project->first(skey);
|
2011-04-27 10:05:43 +00:00
|
|
|
fromFile = false;
|
|
|
|
} else {
|
2012-09-06 10:21:38 +00:00
|
|
|
fromFile = ofile.endsWith(Option::pro_ext);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2012-09-06 10:21:38 +00:00
|
|
|
QString file = Option::fixPathToTargetOS(ofile.toQString());
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
if(fromFile) {
|
|
|
|
int slsh = file.lastIndexOf(Option::dir_sep);
|
|
|
|
if(slsh != -1) {
|
|
|
|
st->in_directory = file.left(slsh+1);
|
|
|
|
st->profile = file.mid(slsh+1);
|
|
|
|
} else {
|
|
|
|
st->profile = file;
|
|
|
|
}
|
|
|
|
} else {
|
2019-05-28 11:22:39 +00:00
|
|
|
if (!file.isEmpty() && !project->isActiveConfig("subdir_first_pro")) {
|
|
|
|
const QString baseName = file.section(Option::dir_sep, -1);
|
|
|
|
if (baseName.isEmpty()) {
|
|
|
|
warn_msg(WarnLogic, "Ignoring invalid SUBDIRS entry %s",
|
|
|
|
subdirs[subdir].toLatin1().constData());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
st->profile = baseName + Option::pro_ext;
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
st->in_directory = file;
|
|
|
|
}
|
|
|
|
while(st->in_directory.endsWith(Option::dir_sep))
|
|
|
|
st->in_directory.chop(1);
|
|
|
|
if(fileInfo(st->in_directory).isRelative())
|
|
|
|
st->out_directory = st->in_directory;
|
|
|
|
else
|
2015-04-13 19:18:36 +00:00
|
|
|
st->out_directory = fileFixify(st->in_directory, FileFixifyBackwards);
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey mkey(fixedSubdir + ".makefile");
|
|
|
|
if (!project->isEmpty(mkey)) {
|
|
|
|
st->makefile = project->first(mkey).toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
2012-05-16 12:54:21 +00:00
|
|
|
st->makefile = "Makefile";
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!st->profile.isEmpty()) {
|
|
|
|
QString basename = st->in_directory;
|
|
|
|
int new_slsh = basename.lastIndexOf(Option::dir_sep);
|
|
|
|
if(new_slsh != -1)
|
|
|
|
basename = basename.mid(new_slsh+1);
|
|
|
|
if(st->profile != basename + Option::pro_ext)
|
|
|
|
st->makefile += "." + st->profile.left(st->profile.length() - Option::pro_ext.length());
|
|
|
|
}
|
|
|
|
}
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey dkey(fixedSubdir + ".depends");
|
|
|
|
if (!project->isEmpty(dkey)) {
|
|
|
|
const ProStringList &depends = project->values(dkey);
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int depend = 0; depend < depends.size(); ++depend) {
|
|
|
|
bool found = false;
|
|
|
|
for(int subDep = 0; subDep < subdirs.size(); ++subDep) {
|
|
|
|
if(subdirs[subDep] == depends.at(depend)) {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString subName = subdirs[subDep].toQString();
|
|
|
|
QString fixedSubDep = subName;
|
2020-04-03 15:11:36 +00:00
|
|
|
fixedSubDep.replace(QRegularExpression("[^a-zA-Z0-9_]"),"-");
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey dtkey(fixedSubDep + ".target");
|
|
|
|
if (!project->isEmpty(dtkey)) {
|
|
|
|
st->depends += project->first(dtkey);
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
2014-11-24 15:02:38 +00:00
|
|
|
QString d = Option::fixPathToTargetOS(subName);
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey dfkey(fixedSubDep + ".file");
|
|
|
|
if (!project->isEmpty(dfkey)) {
|
|
|
|
d = project->first(dfkey).toQString();
|
|
|
|
} else {
|
|
|
|
const ProKey dskey(fixedSubDep + ".subdir");
|
|
|
|
if (!project->isEmpty(dskey))
|
|
|
|
d = project->first(dskey).toQString();
|
|
|
|
}
|
2020-04-03 15:11:36 +00:00
|
|
|
st->depends += "sub-" + d.replace(QRegularExpression("[^a-zA-Z0-9_]"),"-");
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!found) {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString depend_str = depends.at(depend).toQString();
|
2020-04-03 15:11:36 +00:00
|
|
|
st->depends += depend_str.replace(QRegularExpression("[^a-zA-Z0-9_]"),"-");
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey tkey(fixedSubdir + ".target");
|
|
|
|
if (!project->isEmpty(tkey)) {
|
|
|
|
st->target = project->first(tkey).toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
|
|
|
st->target = "sub-" + file;
|
2020-04-03 15:11:36 +00:00
|
|
|
st->target.replace(QRegularExpression("[^a-zA-Z0-9_]"), "-");
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return targets;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MakefileGenerator::writeSubDirs(QTextStream &t)
|
|
|
|
{
|
|
|
|
QList<SubTarget*> targets = findSubDirsSubTargets();
|
2013-07-04 09:25:16 +00:00
|
|
|
t << "first: make_first\n";
|
2011-04-27 10:05:43 +00:00
|
|
|
int flags = SubTargetInstalls;
|
|
|
|
if(project->isActiveConfig("ordered"))
|
|
|
|
flags |= SubTargetOrdered;
|
|
|
|
writeSubTargets(t, targets, flags);
|
|
|
|
qDeleteAll(targets);
|
|
|
|
}
|
|
|
|
|
2011-05-03 07:52:30 +00:00
|
|
|
void MakefileGenerator::writeSubMakeCall(QTextStream &t, const QString &callPrefix,
|
2012-04-25 15:12:53 +00:00
|
|
|
const QString &makeArguments)
|
2011-05-03 07:52:30 +00:00
|
|
|
{
|
2019-04-30 10:51:36 +00:00
|
|
|
t << callPrefix << "$(MAKE)" << makeArguments << Qt::endl;
|
2011-05-03 07:52:30 +00:00
|
|
|
}
|
|
|
|
|
2012-05-18 20:13:51 +00:00
|
|
|
void
|
|
|
|
MakefileGenerator::writeSubTargetCall(QTextStream &t,
|
|
|
|
const QString &in_directory, const QString &in, const QString &out_directory, const QString &out,
|
2012-04-25 15:12:53 +00:00
|
|
|
const QString &out_directory_cdin, const QString &makefilein)
|
2012-05-18 20:13:51 +00:00
|
|
|
{
|
|
|
|
QString pfx;
|
|
|
|
if (!in.isEmpty()) {
|
|
|
|
if (!in_directory.isEmpty())
|
|
|
|
t << "\n\t" << mkdir_p_asstring(out_directory);
|
2013-02-28 11:40:16 +00:00
|
|
|
pfx = "( " + chkexists.arg(out) +
|
2017-01-03 18:10:14 +00:00
|
|
|
+ " $(QMAKE) -o " + out + ' ' + in + buildArgs(false)
|
2012-05-18 20:13:51 +00:00
|
|
|
+ " ) && ";
|
|
|
|
}
|
2012-04-25 15:12:53 +00:00
|
|
|
writeSubMakeCall(t, out_directory_cdin + pfx, makefilein);
|
2012-05-18 20:13:51 +00:00
|
|
|
}
|
|
|
|
|
2019-05-24 09:29:03 +00:00
|
|
|
static void chopEndLines(QString *s)
|
|
|
|
{
|
|
|
|
while (!s->isEmpty()) {
|
|
|
|
const ushort c = s->at(s->size() - 1).unicode();
|
|
|
|
if (c != '\n' && c != '\r')
|
|
|
|
break;
|
|
|
|
s->chop(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
void
|
|
|
|
MakefileGenerator::writeSubTargets(QTextStream &t, QList<MakefileGenerator::SubTarget*> targets, int flags)
|
|
|
|
{
|
|
|
|
// blasted includes
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &qeui = project->values("QMAKE_EXTRA_INCLUDES");
|
|
|
|
for (ProStringList::ConstIterator qeui_it = qeui.begin(); qeui_it != qeui.end(); ++qeui_it)
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "include " << (*qeui_it) << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
if (!(flags & SubTargetSkipDefaultVariables)) {
|
2014-05-24 22:41:44 +00:00
|
|
|
writeDefaultVariables(t);
|
2011-04-27 10:05:43 +00:00
|
|
|
t << "SUBTARGETS = "; // subtargets are sub-directory
|
|
|
|
for(int target = 0; target < targets.size(); ++target)
|
|
|
|
t << " \\\n\t\t" << targets.at(target)->target;
|
2019-04-30 10:51:36 +00:00
|
|
|
t << Qt::endl << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
writeExtraVariables(t);
|
|
|
|
|
|
|
|
QStringList targetSuffixes;
|
2012-09-06 10:21:38 +00:00
|
|
|
const QString abs_source_path = project->first("QMAKE_ABSOLUTE_SOURCE_PATH").toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
if (!(flags & SubTargetSkipDefaultTargets)) {
|
2010-02-01 17:16:39 +00:00
|
|
|
targetSuffixes << "make_first" << "all" << "clean" << "distclean"
|
2011-04-27 10:05:43 +00:00
|
|
|
<< QString((flags & SubTargetInstalls) ? "install_subtargets" : "install")
|
|
|
|
<< QString((flags & SubTargetInstalls) ? "uninstall_subtargets" : "uninstall");
|
|
|
|
}
|
|
|
|
|
2019-05-24 09:29:03 +00:00
|
|
|
struct SequentialInstallData
|
|
|
|
{
|
|
|
|
QString targetPrefix;
|
|
|
|
QString commands;
|
|
|
|
QTextStream commandsStream;
|
|
|
|
SequentialInstallData() : commandsStream(&commands) {}
|
|
|
|
};
|
|
|
|
std::unique_ptr<SequentialInstallData> sequentialInstallData;
|
2012-05-18 14:59:22 +00:00
|
|
|
bool dont_recurse = project->isActiveConfig("dont_recurse");
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
// generate target rules
|
|
|
|
for(int target = 0; target < targets.size(); ++target) {
|
|
|
|
SubTarget *subtarget = targets.at(target);
|
|
|
|
QString in_directory = subtarget->in_directory;
|
|
|
|
if(!in_directory.isEmpty() && !in_directory.endsWith(Option::dir_sep))
|
|
|
|
in_directory += Option::dir_sep;
|
|
|
|
QString out_directory = subtarget->out_directory;
|
|
|
|
if(!out_directory.isEmpty() && !out_directory.endsWith(Option::dir_sep))
|
|
|
|
out_directory += Option::dir_sep;
|
|
|
|
if(!abs_source_path.isEmpty() && out_directory.startsWith(abs_source_path))
|
|
|
|
out_directory = Option::output_dir + out_directory.mid(abs_source_path.length());
|
|
|
|
|
2020-04-03 09:49:27 +00:00
|
|
|
QString out_directory_cdin = out_directory.isEmpty() ? QString("\n\t")
|
2015-02-06 14:30:02 +00:00
|
|
|
: "\n\tcd " + escapeFilePath(out_directory) + " && ";
|
|
|
|
QString makefilein = " -f " + escapeFilePath(subtarget->makefile);
|
2012-05-18 14:59:22 +00:00
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
//qmake it
|
2012-05-18 20:13:51 +00:00
|
|
|
QString out;
|
|
|
|
QString in;
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!subtarget->profile.isEmpty()) {
|
2012-05-18 20:13:51 +00:00
|
|
|
out = subtarget->makefile;
|
|
|
|
in = escapeFilePath(fileFixify(in_directory + subtarget->profile, FileFixifyAbsolute));
|
2011-04-27 10:05:43 +00:00
|
|
|
if(out.startsWith(in_directory))
|
|
|
|
out = out.mid(in_directory.length());
|
2015-02-06 14:30:02 +00:00
|
|
|
out = escapeFilePath(out);
|
2011-04-27 10:05:43 +00:00
|
|
|
t << subtarget->target << "-qmake_all: ";
|
2012-05-30 10:33:34 +00:00
|
|
|
if (flags & SubTargetOrdered) {
|
|
|
|
if (target)
|
|
|
|
t << targets.at(target - 1)->target << "-qmake_all";
|
|
|
|
} else {
|
|
|
|
if (!subtarget->depends.isEmpty())
|
|
|
|
t << valGlue(subtarget->depends, QString(), "-qmake_all ", "-qmake_all");
|
|
|
|
}
|
2012-04-25 15:12:53 +00:00
|
|
|
t << " FORCE\n\t";
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!in_directory.isEmpty()) {
|
|
|
|
t << mkdir_p_asstring(out_directory)
|
2012-04-25 15:12:53 +00:00
|
|
|
<< out_directory_cdin;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2017-01-03 18:10:14 +00:00
|
|
|
t << "$(QMAKE) -o " << out << ' ' << in << buildArgs(false);
|
2012-05-18 14:59:22 +00:00
|
|
|
if (!dont_recurse)
|
2012-04-25 15:12:53 +00:00
|
|
|
writeSubMakeCall(t, out_directory_cdin, makefilein + " qmake_all");
|
2012-05-18 14:59:22 +00:00
|
|
|
else
|
2019-04-30 10:51:36 +00:00
|
|
|
t << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{ //actually compile
|
2012-05-18 20:13:51 +00:00
|
|
|
t << subtarget->target << ":";
|
2019-02-01 09:54:30 +00:00
|
|
|
auto extraDeps = extraSubTargetDependencies();
|
|
|
|
if (!extraDeps.isEmpty())
|
|
|
|
t << " " << valList(extraDeps);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!subtarget->depends.isEmpty())
|
|
|
|
t << " " << valList(subtarget->depends);
|
2012-04-25 15:12:53 +00:00
|
|
|
t << " FORCE";
|
2012-05-18 20:13:51 +00:00
|
|
|
writeSubTargetCall(t, in_directory, in, out_directory, out,
|
2012-04-25 15:12:53 +00:00
|
|
|
out_directory_cdin, makefilein);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for(int suffix = 0; suffix < targetSuffixes.size(); ++suffix) {
|
|
|
|
QString s = targetSuffixes.at(suffix);
|
|
|
|
if(s == "install_subtargets")
|
|
|
|
s = "install";
|
|
|
|
else if(s == "uninstall_subtargets")
|
|
|
|
s = "uninstall";
|
|
|
|
else if(s == "make_first")
|
|
|
|
s = QString();
|
|
|
|
|
2019-05-24 09:29:03 +00:00
|
|
|
if (project->isActiveConfig("build_all") && s == "install") {
|
|
|
|
if (!sequentialInstallData)
|
|
|
|
sequentialInstallData.reset(new SequentialInstallData);
|
|
|
|
sequentialInstallData->targetPrefix += subtarget->target + '-';
|
|
|
|
writeSubTargetCall(sequentialInstallData->commandsStream, in_directory, in,
|
|
|
|
out_directory, out, out_directory_cdin,
|
|
|
|
makefilein + " " + s);
|
|
|
|
chopEndLines(&sequentialInstallData->commands);
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
if(flags & SubTargetOrdered) {
|
2012-05-18 20:13:51 +00:00
|
|
|
t << subtarget->target << "-" << targetSuffixes.at(suffix) << "-ordered:";
|
2011-04-27 10:05:43 +00:00
|
|
|
if(target)
|
|
|
|
t << " " << targets.at(target-1)->target << "-" << targetSuffixes.at(suffix) << "-ordered ";
|
2012-04-25 15:12:53 +00:00
|
|
|
t << " FORCE";
|
2012-05-18 20:13:51 +00:00
|
|
|
writeSubTargetCall(t, in_directory, in, out_directory, out,
|
2012-04-25 15:12:53 +00:00
|
|
|
out_directory_cdin, makefilein + " " + s);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2012-05-18 20:13:51 +00:00
|
|
|
t << subtarget->target << "-" << targetSuffixes.at(suffix) << ":";
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!subtarget->depends.isEmpty())
|
|
|
|
t << " " << valGlue(subtarget->depends, QString(), "-" + targetSuffixes.at(suffix) + " ",
|
|
|
|
"-"+targetSuffixes.at(suffix));
|
2012-04-25 15:12:53 +00:00
|
|
|
t << " FORCE";
|
2012-05-18 20:13:51 +00:00
|
|
|
writeSubTargetCall(t, in_directory, in, out_directory, out,
|
2012-04-25 15:12:53 +00:00
|
|
|
out_directory_cdin, makefilein + " " + s);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
2019-04-30 10:51:36 +00:00
|
|
|
t << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2019-05-24 09:29:03 +00:00
|
|
|
if (sequentialInstallData) {
|
|
|
|
t << sequentialInstallData->targetPrefix << "install: FORCE"
|
|
|
|
<< sequentialInstallData->commands << Qt::endl << Qt::endl;
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
if (!(flags & SubTargetSkipDefaultTargets)) {
|
2012-05-18 14:59:22 +00:00
|
|
|
writeMakeQmake(t, true);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
t << "qmake_all:";
|
|
|
|
if(!targets.isEmpty()) {
|
|
|
|
for(QList<SubTarget*>::Iterator it = targets.begin(); it != targets.end(); ++it) {
|
|
|
|
if(!(*it)->profile.isEmpty())
|
2013-07-04 09:25:16 +00:00
|
|
|
t << " " << (*it)->target << "-qmake_all";
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
2013-07-04 09:25:16 +00:00
|
|
|
t << " FORCE\n\n";
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for(int s = 0; s < targetSuffixes.size(); ++s) {
|
|
|
|
QString suffix = targetSuffixes.at(s);
|
|
|
|
if(!(flags & SubTargetInstalls) && suffix.endsWith("install"))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
t << suffix << ":";
|
|
|
|
for(int target = 0; target < targets.size(); ++target) {
|
|
|
|
SubTarget *subTarget = targets.at(target);
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &config = project->values(ProKey(subTarget->name + ".CONFIG"));
|
2010-02-01 17:16:39 +00:00
|
|
|
if (suffix == "make_first"
|
2012-09-06 10:21:38 +00:00
|
|
|
&& config.indexOf("no_default_target") != -1) {
|
2011-04-27 10:05:43 +00:00
|
|
|
continue;
|
|
|
|
}
|
2011-02-24 19:01:18 +00:00
|
|
|
if((suffix == "install_subtargets" || suffix == "uninstall_subtargets")
|
2012-09-06 10:21:38 +00:00
|
|
|
&& config.indexOf("no_default_install") != -1) {
|
2011-02-24 19:01:18 +00:00
|
|
|
continue;
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
QString targetRule = subTarget->target + "-" + suffix;
|
|
|
|
if(flags & SubTargetOrdered)
|
|
|
|
targetRule += "-ordered";
|
|
|
|
t << " " << targetRule;
|
|
|
|
}
|
|
|
|
if(suffix == "all" || suffix == "make_first")
|
2015-04-22 21:59:01 +00:00
|
|
|
t << ' ' << depVar("ALL_DEPS");
|
2011-04-27 10:05:43 +00:00
|
|
|
if(suffix == "clean")
|
2015-04-22 21:59:01 +00:00
|
|
|
t << ' ' << depVar("CLEAN_DEPS");
|
2014-01-29 14:19:51 +00:00
|
|
|
else if (suffix == "distclean")
|
2015-04-22 21:59:01 +00:00
|
|
|
t << ' ' << depVar("DISTCLEAN_DEPS");
|
2013-07-04 09:25:16 +00:00
|
|
|
t << " FORCE\n";
|
2011-04-27 10:05:43 +00:00
|
|
|
if(suffix == "clean") {
|
2014-11-14 20:12:56 +00:00
|
|
|
t << fixFileVarGlue("QMAKE_CLEAN", "\t-$(DEL_FILE) ", "\n\t-$(DEL_FILE) ", "\n");
|
2011-04-27 10:05:43 +00:00
|
|
|
} else if(suffix == "distclean") {
|
2014-11-24 18:51:32 +00:00
|
|
|
QString ofile = fileFixify(Option::output.fileName());
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!ofile.isEmpty())
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "\t-$(DEL_FILE) " << escapeFilePath(ofile) << Qt::endl;
|
2014-11-14 20:12:56 +00:00
|
|
|
t << fixFileVarGlue("QMAKE_DISTCLEAN", "\t-$(DEL_FILE) ", " ", "\n");
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// user defined targets
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &qut = project->values("QMAKE_EXTRA_TARGETS");
|
|
|
|
for (ProStringList::ConstIterator qut_it = qut.begin(); qut_it != qut.end(); ++qut_it) {
|
|
|
|
const ProStringList &config = project->values(ProKey(*qut_it + ".CONFIG"));
|
|
|
|
QString targ = var(ProKey(*qut_it + ".target")),
|
|
|
|
cmd = var(ProKey(*qut_it + ".commands")), deps;
|
2011-04-27 10:05:43 +00:00
|
|
|
if(targ.isEmpty())
|
2012-09-06 10:21:38 +00:00
|
|
|
targ = (*qut_it).toQString();
|
2019-04-30 10:51:36 +00:00
|
|
|
t << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &deplist = project->values(ProKey(*qut_it + ".depends"));
|
|
|
|
for (ProStringList::ConstIterator dep_it = deplist.begin(); dep_it != deplist.end(); ++dep_it) {
|
|
|
|
QString dep = var(ProKey(*dep_it + ".target"));
|
2011-04-27 10:05:43 +00:00
|
|
|
if(dep.isEmpty())
|
2016-11-08 16:01:01 +00:00
|
|
|
dep = (*dep_it).toQString();
|
|
|
|
deps += ' ' + escapeDependencyPath(Option::fixPathToTargetOS(dep, false));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2012-09-06 10:21:38 +00:00
|
|
|
if (config.indexOf("recursive") != -1) {
|
2011-04-27 10:05:43 +00:00
|
|
|
QSet<QString> recurse;
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey rkey(*qut_it + ".recurse");
|
|
|
|
if (project->isSet(rkey)) {
|
2019-05-06 12:00:53 +00:00
|
|
|
const QStringList values = project->values(rkey).toQStringList();
|
|
|
|
recurse = QSet<QString>(values.begin(), values.end());
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
|
|
|
for(int target = 0; target < targets.size(); ++target)
|
|
|
|
recurse.insert(targets.at(target)->name);
|
|
|
|
}
|
|
|
|
for(int target = 0; target < targets.size(); ++target) {
|
|
|
|
SubTarget *subtarget = targets.at(target);
|
|
|
|
QString in_directory = subtarget->in_directory;
|
|
|
|
if(!in_directory.isEmpty() && !in_directory.endsWith(Option::dir_sep))
|
|
|
|
in_directory += Option::dir_sep;
|
|
|
|
QString out_directory = subtarget->out_directory;
|
|
|
|
if(!out_directory.isEmpty() && !out_directory.endsWith(Option::dir_sep))
|
|
|
|
out_directory += Option::dir_sep;
|
|
|
|
if(!abs_source_path.isEmpty() && out_directory.startsWith(abs_source_path))
|
|
|
|
out_directory = Option::output_dir + out_directory.mid(abs_source_path.length());
|
|
|
|
|
|
|
|
if(!recurse.contains(subtarget->name))
|
|
|
|
continue;
|
2012-05-18 20:13:51 +00:00
|
|
|
|
2020-04-03 09:49:27 +00:00
|
|
|
QString out_directory_cdin = out_directory.isEmpty() ? QString("\n\t")
|
2015-02-06 14:30:02 +00:00
|
|
|
: "\n\tcd " + escapeFilePath(out_directory) + " && ";
|
|
|
|
QString makefilein = " -f " + escapeFilePath(subtarget->makefile);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-05-18 20:13:51 +00:00
|
|
|
QString out;
|
|
|
|
QString in;
|
|
|
|
if (!subtarget->profile.isEmpty()) {
|
|
|
|
out = subtarget->makefile;
|
|
|
|
in = escapeFilePath(fileFixify(in_directory + subtarget->profile, FileFixifyAbsolute));
|
|
|
|
if (out.startsWith(in_directory))
|
|
|
|
out = out.mid(in_directory.length());
|
2015-02-06 14:30:02 +00:00
|
|
|
out = escapeFilePath(out);
|
2012-05-18 20:13:51 +00:00
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
//write the rule/depends
|
|
|
|
if(flags & SubTargetOrdered) {
|
|
|
|
const QString dep = subtarget->target + "-" + (*qut_it) + "_ordered";
|
2012-05-18 20:13:51 +00:00
|
|
|
t << dep << ":";
|
2011-04-27 10:05:43 +00:00
|
|
|
if(target)
|
|
|
|
t << " " << targets.at(target-1)->target << "-" << (*qut_it) << "_ordered ";
|
|
|
|
deps += " " + dep;
|
|
|
|
} else {
|
|
|
|
const QString dep = subtarget->target + "-" + (*qut_it);
|
2012-05-18 20:13:51 +00:00
|
|
|
t << dep << ":";
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!subtarget->depends.isEmpty())
|
|
|
|
t << " " << valGlue(subtarget->depends, QString(), "-" + (*qut_it) + " ", "-" + (*qut_it));
|
|
|
|
deps += " " + dep;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString sub_targ = targ;
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey rtkey(*qut_it + ".recurse_target");
|
|
|
|
if (project->isSet(rtkey))
|
|
|
|
sub_targ = project->first(rtkey).toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
//write the commands
|
2012-05-18 20:13:51 +00:00
|
|
|
writeSubTargetCall(t, in_directory, in, out_directory, out,
|
2012-04-25 15:12:53 +00:00
|
|
|
out_directory_cdin, makefilein + " " + sub_targ);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
2012-09-06 10:21:38 +00:00
|
|
|
if (config.indexOf("phony") != -1)
|
2011-04-27 10:05:43 +00:00
|
|
|
deps += " FORCE";
|
2016-11-08 16:01:01 +00:00
|
|
|
t << escapeDependencyPath(Option::fixPathToTargetOS(targ, false)) << ":" << deps << "\n";
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!cmd.isEmpty())
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "\t" << cmd << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(flags & SubTargetInstalls) {
|
|
|
|
project->values("INSTALLDEPS") += "install_subtargets";
|
|
|
|
project->values("UNINSTALLDEPS") += "uninstall_subtargets";
|
2012-09-06 10:21:38 +00:00
|
|
|
writeInstalls(t, true);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2013-07-04 09:25:16 +00:00
|
|
|
t << "FORCE:\n\n";
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-05-18 14:59:22 +00:00
|
|
|
MakefileGenerator::writeMakeQmake(QTextStream &t, bool noDummyQmakeAll)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2014-11-24 18:51:32 +00:00
|
|
|
QString ofile = fileFixify(Option::output.fileName());
|
2011-04-27 10:05:43 +00:00
|
|
|
if(project->isEmpty("QMAKE_FAILED_REQUIREMENTS") && !project->isEmpty("QMAKE_INTERNAL_PRL_FILE")) {
|
2015-02-06 14:30:02 +00:00
|
|
|
QStringList files = escapeFilePaths(fileFixify(Option::mkfile::project_files));
|
2013-07-04 09:25:16 +00:00
|
|
|
t << escapeDependencyPath(project->first("QMAKE_INTERNAL_PRL_FILE").toQString()) << ": \n\t"
|
2019-04-30 10:51:36 +00:00
|
|
|
<< "@$(QMAKE) -prl " << files.join(' ') << ' ' << buildArgs(true) << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2019-07-30 12:31:50 +00:00
|
|
|
QString qmake = "$(QMAKE)" + fullBuildArgs();
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!ofile.isEmpty() && !project->isActiveConfig("no_autoqmake")) {
|
2015-02-06 14:30:02 +00:00
|
|
|
t << escapeDependencyPath(ofile) << ": "
|
2012-08-28 08:12:36 +00:00
|
|
|
<< escapeDependencyPath(fileFixify(project->projectFile())) << " ";
|
2012-09-05 16:29:19 +00:00
|
|
|
if (Option::globals->do_cache) {
|
2012-05-10 09:22:07 +00:00
|
|
|
if (!project->confFile().isEmpty())
|
|
|
|
t << escapeDependencyPath(fileFixify(project->confFile())) << " ";
|
|
|
|
if (!project->cacheFile().isEmpty())
|
|
|
|
t << escapeDependencyPath(fileFixify(project->cacheFile())) << " ";
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!specdir().isEmpty()) {
|
2014-11-24 15:02:38 +00:00
|
|
|
if (exists(Option::normalizePath(specdir() + "/qmake.conf")))
|
2011-04-27 10:05:43 +00:00
|
|
|
t << escapeDependencyPath(specdir() + Option::dir_sep + "qmake.conf") << " ";
|
|
|
|
}
|
2015-02-06 14:30:02 +00:00
|
|
|
const ProStringList &included = escapeDependencyPaths(project->values("QMAKE_INTERNAL_INCLUDED_FILES"));
|
2016-05-13 13:21:05 +00:00
|
|
|
t << included.join(QString(" \\\n\t\t")) << "\n\t"
|
2019-04-30 10:51:36 +00:00
|
|
|
<< qmake << Qt::endl;
|
2018-07-16 12:10:50 +00:00
|
|
|
const ProStringList &extraCommands = project->values("QMAKE_MAKE_QMAKE_EXTRA_COMMANDS");
|
|
|
|
if (!extraCommands.isEmpty())
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "\t" << extraCommands.join(QString("\n\t")) << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int include = 0; include < included.size(); ++include) {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProString &i = included.at(include);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!i.isEmpty())
|
2013-07-04 09:25:16 +00:00
|
|
|
t << i << ":\n";
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(project->first("QMAKE_ORIG_TARGET") != "qmake") {
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "qmake: FORCE\n\t@" << qmake << Qt::endl << Qt::endl;
|
2012-04-25 15:12:53 +00:00
|
|
|
if (!noDummyQmakeAll)
|
2013-07-04 09:25:16 +00:00
|
|
|
t << "qmake_all: FORCE\n\n";
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QFileInfo
|
|
|
|
MakefileGenerator::fileInfo(QString file) const
|
|
|
|
{
|
2018-08-02 22:22:24 +00:00
|
|
|
static QHash<FileInfoCacheKey, QFileInfo> *cache = nullptr;
|
2011-04-27 10:05:43 +00:00
|
|
|
static QFileInfo noInfo = QFileInfo();
|
|
|
|
if(!cache) {
|
|
|
|
cache = new QHash<FileInfoCacheKey, QFileInfo>;
|
|
|
|
qmakeAddCacheClear(qmakeDeleteCacheClear<QHash<FileInfoCacheKey, QFileInfo> >, (void**)&cache);
|
|
|
|
}
|
|
|
|
FileInfoCacheKey cacheKey(file);
|
|
|
|
QFileInfo value = cache->value(cacheKey, noInfo);
|
|
|
|
if (value != noInfo)
|
|
|
|
return value;
|
|
|
|
|
|
|
|
QFileInfo fi(file);
|
|
|
|
if (fi.exists())
|
|
|
|
cache->insert(cacheKey, fi);
|
|
|
|
return fi;
|
|
|
|
}
|
|
|
|
|
2015-09-23 12:57:05 +00:00
|
|
|
MakefileGenerator::LibFlagType
|
|
|
|
MakefileGenerator::parseLibFlag(const ProString &flag, ProString *arg)
|
|
|
|
{
|
|
|
|
if (flag.startsWith("-L")) {
|
|
|
|
*arg = flag.mid(2);
|
|
|
|
return LibFlagPath;
|
|
|
|
}
|
|
|
|
if (flag.startsWith("-l")) {
|
|
|
|
*arg = flag.mid(2);
|
|
|
|
return LibFlagLib;
|
|
|
|
}
|
|
|
|
if (flag.startsWith('-'))
|
|
|
|
return LibFlagOther;
|
|
|
|
return LibFlagFile;
|
|
|
|
}
|
|
|
|
|
2015-02-06 14:30:02 +00:00
|
|
|
ProStringList
|
|
|
|
MakefileGenerator::fixLibFlags(const ProKey &var)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2016-01-26 13:38:54 +00:00
|
|
|
const ProStringList &in = project->values(var);
|
2015-02-06 14:30:02 +00:00
|
|
|
ProStringList ret;
|
|
|
|
|
|
|
|
ret.reserve(in.length());
|
2016-01-26 13:38:54 +00:00
|
|
|
for (const ProString &v : in)
|
2015-02-06 14:30:02 +00:00
|
|
|
ret << fixLibFlag(v);
|
2011-04-27 10:05:43 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-02-06 14:30:02 +00:00
|
|
|
ProString MakefileGenerator::fixLibFlag(const ProString &)
|
2012-09-06 10:21:38 +00:00
|
|
|
{
|
2015-02-06 14:30:02 +00:00
|
|
|
qFatal("MakefileGenerator::fixLibFlag() called");
|
|
|
|
return ProString();
|
2012-09-06 10:21:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ProString
|
|
|
|
MakefileGenerator::escapeFilePath(const ProString &path) const
|
|
|
|
{
|
|
|
|
return ProString(escapeFilePath(path.toQString()));
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
QStringList
|
|
|
|
MakefileGenerator::escapeFilePaths(const QStringList &paths) const
|
|
|
|
{
|
|
|
|
QStringList ret;
|
|
|
|
for(int i = 0; i < paths.size(); ++i)
|
|
|
|
ret.append(escapeFilePath(paths.at(i)));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList
|
|
|
|
MakefileGenerator::escapeFilePaths(const ProStringList &paths) const
|
|
|
|
{
|
|
|
|
ProStringList ret;
|
2016-02-01 08:49:22 +00:00
|
|
|
const int size = paths.size();
|
|
|
|
ret.reserve(size);
|
|
|
|
for (int i = 0; i < size; ++i)
|
2012-09-06 10:21:38 +00:00
|
|
|
ret.append(escapeFilePath(paths.at(i)));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-06-08 19:18:11 +00:00
|
|
|
QString
|
|
|
|
MakefileGenerator::escapeDependencyPath(const QString &path) const
|
|
|
|
{
|
|
|
|
QString ret = path;
|
|
|
|
if (!ret.isEmpty()) {
|
|
|
|
// Unix make semantics, to be inherited by unix and mingw generators.
|
2018-07-25 16:21:05 +00:00
|
|
|
#ifdef Q_OS_UNIX
|
|
|
|
// When running on Unix, we need to escape colons (which may appear
|
|
|
|
// anywhere in a path, and would be mis-parsed as dependency separators).
|
2020-04-03 15:11:36 +00:00
|
|
|
static const QRegularExpression criticalChars(QStringLiteral("([\t :#])"));
|
2018-07-25 16:21:05 +00:00
|
|
|
#else
|
|
|
|
// MinGW make has a hack for colons which denote drive letters, and no
|
|
|
|
// other colons may appear in paths. And escaping colons actually breaks
|
|
|
|
// the make from the Android SDK.
|
2020-04-03 15:11:36 +00:00
|
|
|
static const QRegularExpression criticalChars(QStringLiteral("([\t #])"));
|
2018-07-25 16:21:05 +00:00
|
|
|
#endif
|
2018-06-08 19:18:11 +00:00
|
|
|
ret.replace(criticalChars, QStringLiteral("\\\\1"));
|
2018-11-05 14:13:22 +00:00
|
|
|
ret.replace(QLatin1Char('='), QStringLiteral("$(EQ)"));
|
2018-06-08 19:18:11 +00:00
|
|
|
debug_msg(2, "escapeDependencyPath: %s -> %s", path.toLatin1().constData(), ret.toLatin1().constData());
|
|
|
|
}
|
|
|
|
return ret;
|
2012-09-06 10:21:38 +00:00
|
|
|
}
|
|
|
|
|
2015-02-06 14:30:02 +00:00
|
|
|
ProString
|
|
|
|
MakefileGenerator::escapeDependencyPath(const ProString &path) const
|
|
|
|
{
|
|
|
|
return ProString(escapeDependencyPath(path.toQString()));
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
QStringList
|
|
|
|
MakefileGenerator::escapeDependencyPaths(const QStringList &paths) const
|
|
|
|
{
|
|
|
|
QStringList ret;
|
2016-02-01 08:49:22 +00:00
|
|
|
const int size = paths.size();
|
|
|
|
ret.reserve(size);
|
|
|
|
for (int i = 0; i < size; ++i)
|
2011-04-27 10:05:43 +00:00
|
|
|
ret.append(escapeDependencyPath(paths.at(i)));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList
|
|
|
|
MakefileGenerator::escapeDependencyPaths(const ProStringList &paths) const
|
|
|
|
{
|
|
|
|
ProStringList ret;
|
2016-02-01 08:49:22 +00:00
|
|
|
const int size = paths.size();
|
|
|
|
ret.reserve(size);
|
|
|
|
for (int i = 0; i < size; ++i)
|
2012-09-06 10:21:38 +00:00
|
|
|
ret.append(escapeDependencyPath(paths.at(i).toQString()));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-06-08 14:00:44 +00:00
|
|
|
QStringList
|
|
|
|
MakefileGenerator::finalizeDependencyPaths(const QStringList &paths) const
|
|
|
|
{
|
|
|
|
QStringList ret;
|
|
|
|
const int size = paths.size();
|
|
|
|
ret.reserve(size);
|
|
|
|
for (int i = 0; i < size; ++i)
|
|
|
|
ret.append(escapeDependencyPath(Option::fixPathToTargetOS(paths.at(i), false)));
|
|
|
|
return ret;
|
2012-09-06 10:21:38 +00:00
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
QStringList
|
2015-04-13 19:18:36 +00:00
|
|
|
MakefileGenerator::fileFixify(const QStringList &files, FileFixifyTypes fix, bool canon) const
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
if(files.isEmpty())
|
|
|
|
return files;
|
|
|
|
QStringList ret;
|
|
|
|
for(QStringList::ConstIterator it = files.begin(); it != files.end(); ++it) {
|
|
|
|
if(!(*it).isEmpty())
|
2015-04-13 19:18:36 +00:00
|
|
|
ret << fileFixify((*it), fix, canon);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString
|
2015-04-13 19:18:36 +00:00
|
|
|
MakefileGenerator::fileFixify(const QString &file, FileFixifyTypes fix, bool canon) const
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
if(file.isEmpty())
|
|
|
|
return file;
|
2015-02-06 14:30:02 +00:00
|
|
|
QString ret = file;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
//do the fixin'
|
|
|
|
QString orig_file = ret;
|
|
|
|
if(ret.startsWith(QLatin1Char('~'))) {
|
|
|
|
if(ret.startsWith(QLatin1String("~/")))
|
|
|
|
ret = QDir::homePath() + ret.mid(1);
|
|
|
|
else
|
|
|
|
warn_msg(WarnLogic, "Unable to expand ~ in %s", ret.toLatin1().constData());
|
|
|
|
}
|
2015-04-13 19:18:36 +00:00
|
|
|
if ((fix & FileFixifyAbsolute)
|
|
|
|
|| (!(fix & FileFixifyRelative) && project->isActiveConfig("no_fixpath"))) {
|
|
|
|
if ((fix & FileFixifyAbsolute) && QDir::isRelativePath(ret)) {
|
|
|
|
QString pwd = !(fix & FileFixifyFromOutdir) ? project->projectDir() : Option::output_dir;
|
2015-04-14 17:34:40 +00:00
|
|
|
{
|
|
|
|
QFileInfo in_fi(fileInfo(pwd));
|
|
|
|
if (in_fi.exists())
|
|
|
|
pwd = in_fi.canonicalFilePath();
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
if (!pwd.endsWith(QLatin1Char('/')))
|
|
|
|
pwd += QLatin1Char('/');
|
|
|
|
ret.prepend(pwd);
|
|
|
|
}
|
|
|
|
ret = Option::fixPathToTargetOS(ret, false, canon);
|
|
|
|
} else { //fix it..
|
2015-04-13 19:18:36 +00:00
|
|
|
QString out_dir = (fix & FileFixifyToIndir) ? project->projectDir() : Option::output_dir;
|
|
|
|
QString in_dir = !(fix & FileFixifyFromOutdir) ? project->projectDir() : Option::output_dir;
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
QFileInfo in_fi(fileInfo(in_dir));
|
|
|
|
if(in_fi.exists())
|
|
|
|
in_dir = in_fi.canonicalFilePath();
|
|
|
|
QFileInfo out_fi(fileInfo(out_dir));
|
|
|
|
if(out_fi.exists())
|
|
|
|
out_dir = out_fi.canonicalFilePath();
|
|
|
|
}
|
|
|
|
|
2014-11-24 15:02:38 +00:00
|
|
|
QString qfile(Option::normalizePath(ret));
|
2011-04-27 10:05:43 +00:00
|
|
|
QFileInfo qfileinfo(fileInfo(qfile));
|
|
|
|
if(out_dir != in_dir || !qfileinfo.isRelative()) {
|
|
|
|
if(qfileinfo.isRelative()) {
|
|
|
|
ret = in_dir + "/" + qfile;
|
|
|
|
qfileinfo.setFile(ret);
|
|
|
|
}
|
|
|
|
ret = Option::fixPathToTargetOS(ret, false, canon);
|
|
|
|
QString match_dir = Option::fixPathToTargetOS(out_dir, false, canon);
|
|
|
|
if(ret == match_dir) {
|
|
|
|
ret = "";
|
|
|
|
} else if(ret.startsWith(match_dir + Option::dir_sep)) {
|
|
|
|
ret = ret.mid(match_dir.length() + Option::dir_sep.length());
|
|
|
|
} else {
|
|
|
|
//figure out the depth
|
|
|
|
int depth = 4;
|
|
|
|
if(Option::qmake_mode == Option::QMAKE_GENERATE_MAKEFILE ||
|
|
|
|
Option::qmake_mode == Option::QMAKE_GENERATE_PRL) {
|
|
|
|
if(project && !project->isEmpty("QMAKE_PROJECT_DEPTH"))
|
|
|
|
depth = project->first("QMAKE_PROJECT_DEPTH").toInt();
|
|
|
|
else if(Option::mkfile::cachefile_depth != -1)
|
|
|
|
depth = Option::mkfile::cachefile_depth;
|
|
|
|
}
|
|
|
|
//calculate how much can be removed
|
|
|
|
QString dot_prefix;
|
|
|
|
for(int i = 1; i <= depth; i++) {
|
|
|
|
int sl = match_dir.lastIndexOf(Option::dir_sep);
|
|
|
|
if(sl == -1)
|
|
|
|
break;
|
|
|
|
match_dir = match_dir.left(sl);
|
|
|
|
if(match_dir.isEmpty())
|
|
|
|
break;
|
|
|
|
if(ret.startsWith(match_dir + Option::dir_sep)) {
|
|
|
|
//concat
|
|
|
|
int remlen = ret.length() - (match_dir.length() + 1);
|
|
|
|
if(remlen < 0)
|
|
|
|
remlen = 0;
|
|
|
|
ret = ret.right(remlen);
|
|
|
|
//prepend
|
|
|
|
for(int o = 0; o < i; o++)
|
|
|
|
dot_prefix += ".." + Option::dir_sep;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ret.prepend(dot_prefix);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ret = Option::fixPathToTargetOS(ret, false, canon);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(ret.isEmpty())
|
|
|
|
ret = ".";
|
2015-04-13 19:18:36 +00:00
|
|
|
debug_msg(3, "Fixed[%d,%d] %s :: to :: %s [%s::%s]",
|
|
|
|
int(fix), canon, orig_file.toLatin1().constData(), ret.toLatin1().constData(),
|
2011-04-27 10:05:43 +00:00
|
|
|
qmake_getpwd().toLatin1().constData(), Option::output_dir.toLatin1().constData());
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
QMakeLocalFileName
|
|
|
|
MakefileGenerator::fixPathForFile(const QMakeLocalFileName &file, bool forOpen)
|
|
|
|
{
|
|
|
|
if(forOpen)
|
2015-04-13 19:18:36 +00:00
|
|
|
return QMakeLocalFileName(fileFixify(file.real(), FileFixifyBackwards));
|
2011-04-27 10:05:43 +00:00
|
|
|
return QMakeLocalFileName(fileFixify(file.real()));
|
|
|
|
}
|
|
|
|
|
|
|
|
QFileInfo
|
|
|
|
MakefileGenerator::findFileInfo(const QMakeLocalFileName &file)
|
|
|
|
{
|
|
|
|
return fileInfo(file.local());
|
|
|
|
}
|
|
|
|
|
|
|
|
QMakeLocalFileName
|
|
|
|
MakefileGenerator::findFileForDep(const QMakeLocalFileName &dep, const QMakeLocalFileName &file)
|
|
|
|
{
|
|
|
|
QMakeLocalFileName ret;
|
|
|
|
if(!project->isEmpty("SKIP_DEPENDS")) {
|
|
|
|
bool found = false;
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &nodeplist = project->values("SKIP_DEPENDS");
|
|
|
|
for (ProStringList::ConstIterator it = nodeplist.begin();
|
2011-04-27 10:05:43 +00:00
|
|
|
it != nodeplist.end(); ++it) {
|
2020-04-03 15:11:36 +00:00
|
|
|
QRegularExpression regx((*it).toQString());
|
|
|
|
if (regx.match(dep.local()).hasMatch()) {
|
2011-04-27 10:05:43 +00:00
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(found)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = QMakeSourceFileInfo::findFileForDep(dep, file);
|
|
|
|
if(!ret.isNull())
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
//these are some "hacky" heuristics it will try to do on an include
|
|
|
|
//however these can be turned off at runtime, I'm not sure how
|
|
|
|
//reliable these will be, most likely when problems arise turn it off
|
|
|
|
//and see if they go away..
|
|
|
|
if(Option::mkfile::do_dep_heuristics) {
|
|
|
|
if(depHeuristicsCache.contains(dep.real()))
|
|
|
|
return depHeuristicsCache[dep.real()];
|
|
|
|
|
|
|
|
if(Option::output_dir != qmake_getpwd()
|
|
|
|
&& QDir::isRelativePath(dep.real())) { //is it from the shadow tree
|
2020-07-06 09:11:44 +00:00
|
|
|
QList<QMakeLocalFileName> depdirs = QMakeSourceFileInfo::dependencyPaths();
|
2011-04-27 10:05:43 +00:00
|
|
|
depdirs.prepend(fileInfo(file.real()).absoluteDir().path());
|
|
|
|
QString pwd = qmake_getpwd();
|
|
|
|
if(pwd.at(pwd.length()-1) != '/')
|
|
|
|
pwd += '/';
|
|
|
|
for(int i = 0; i < depdirs.count(); i++) {
|
|
|
|
QString dir = depdirs.at(i).real();
|
|
|
|
if(!QDir::isRelativePath(dir) && dir.startsWith(pwd))
|
|
|
|
dir = dir.mid(pwd.length());
|
|
|
|
if(QDir::isRelativePath(dir)) {
|
|
|
|
if(!dir.endsWith(Option::dir_sep))
|
|
|
|
dir += Option::dir_sep;
|
2015-04-13 19:18:36 +00:00
|
|
|
QString shadow = fileFixify(dir + dep.local(), FileFixifyBackwards);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(exists(shadow)) {
|
|
|
|
ret = QMakeLocalFileName(shadow);
|
|
|
|
goto found_dep_from_heuristic;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{ //is it from an EXTRA_TARGET
|
2014-11-24 15:02:38 +00:00
|
|
|
const QString dep_basename = dep.local().section('/', -1);
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &qut = project->values("QMAKE_EXTRA_TARGETS");
|
|
|
|
for (ProStringList::ConstIterator it = qut.begin(); it != qut.end(); ++it) {
|
|
|
|
QString targ = var(ProKey(*it + ".target"));
|
2011-04-27 10:05:43 +00:00
|
|
|
if(targ.isEmpty())
|
2012-09-06 10:21:38 +00:00
|
|
|
targ = (*it).toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
QString out = Option::fixPathToTargetOS(targ);
|
|
|
|
if(out == dep.real() || out.section(Option::dir_sep, -1) == dep_basename) {
|
|
|
|
ret = QMakeLocalFileName(out);
|
|
|
|
goto found_dep_from_heuristic;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{ //is it from an EXTRA_COMPILER
|
2014-11-24 15:02:38 +00:00
|
|
|
const QString dep_basename = dep.local().section('/', -1);
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &quc = project->values("QMAKE_EXTRA_COMPILERS");
|
|
|
|
for (ProStringList::ConstIterator it = quc.begin(); it != quc.end(); ++it) {
|
|
|
|
const ProString &tmp_out = project->first(ProKey(*it + ".output"));
|
2011-04-27 10:05:43 +00:00
|
|
|
if(tmp_out.isEmpty())
|
|
|
|
continue;
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &tmp = project->values(ProKey(*it + ".input"));
|
|
|
|
for (ProStringList::ConstIterator it2 = tmp.begin(); it2 != tmp.end(); ++it2) {
|
|
|
|
const ProStringList &inputs = project->values((*it2).toKey());
|
|
|
|
for (ProStringList::ConstIterator input = inputs.begin(); input != inputs.end(); ++input) {
|
2014-11-20 15:20:16 +00:00
|
|
|
QString out = Option::fixPathToTargetOS(
|
|
|
|
replaceExtraCompilerVariables(tmp_out.toQString(), (*input).toQString(), QString(), NoShell));
|
2012-09-06 10:21:38 +00:00
|
|
|
if (out == dep.real() || out.section(Option::dir_sep, -1) == dep_basename) {
|
2015-04-13 19:18:36 +00:00
|
|
|
ret = QMakeLocalFileName(fileFixify(out, FileFixifyBackwards));
|
2011-04-27 10:05:43 +00:00
|
|
|
goto found_dep_from_heuristic;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
found_dep_from_heuristic:
|
|
|
|
depHeuristicsCache.insert(dep.real(), ret);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList
|
|
|
|
&MakefileGenerator::findDependencies(const QString &file)
|
|
|
|
{
|
|
|
|
const QString fixedFile = fileFixify(file);
|
|
|
|
if(!dependsCache.contains(fixedFile)) {
|
|
|
|
#if 1
|
|
|
|
QStringList deps = QMakeSourceFileInfo::dependencies(file);
|
|
|
|
if(file != fixedFile)
|
|
|
|
deps += QMakeSourceFileInfo::dependencies(fixedFile);
|
|
|
|
#else
|
|
|
|
QStringList deps = QMakeSourceFileInfo::dependencies(fixedFile);
|
|
|
|
#endif
|
|
|
|
dependsCache.insert(fixedFile, deps);
|
|
|
|
}
|
|
|
|
return dependsCache[fixedFile];
|
|
|
|
}
|
|
|
|
|
|
|
|
QString
|
2012-06-26 13:32:17 +00:00
|
|
|
MakefileGenerator::specdir()
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2012-06-26 13:32:17 +00:00
|
|
|
if (spec.isEmpty())
|
2012-06-26 13:36:39 +00:00
|
|
|
spec = fileFixify(project->specDir());
|
2011-04-27 10:05:43 +00:00
|
|
|
return spec;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
MakefileGenerator::openOutput(QFile &file, const QString &build) const
|
|
|
|
{
|
2018-07-17 13:11:07 +00:00
|
|
|
debug_msg(3, "asked to open output file '%s' in %s",
|
|
|
|
qPrintable(file.fileName()), qPrintable(Option::output_dir));
|
|
|
|
|
|
|
|
if (file.fileName().isEmpty()) {
|
|
|
|
file.setFileName(!project->isEmpty("MAKEFILE")
|
|
|
|
? project->first("MAKEFILE").toQString() : "Makefile");
|
|
|
|
}
|
|
|
|
|
|
|
|
file.setFileName(QDir(Option::output_dir).absoluteFilePath(file.fileName()));
|
|
|
|
|
|
|
|
if (!build.isEmpty())
|
2011-04-27 10:05:43 +00:00
|
|
|
file.setFileName(file.fileName() + "." + build);
|
2018-07-17 13:11:07 +00:00
|
|
|
|
|
|
|
if (project->isEmpty("QMAKE_MAKEFILE"))
|
2011-04-27 10:05:43 +00:00
|
|
|
project->values("QMAKE_MAKEFILE").append(file.fileName());
|
2018-07-17 13:11:07 +00:00
|
|
|
|
|
|
|
// Make required directories. Note that we do this based on the
|
|
|
|
// filename, not Option::output_dir, as the filename may include
|
|
|
|
// generator specific directories not included in output_dir.
|
2011-04-27 10:05:43 +00:00
|
|
|
int slsh = file.fileName().lastIndexOf('/');
|
2018-07-17 13:11:07 +00:00
|
|
|
if (slsh != -1)
|
2011-04-27 10:05:43 +00:00
|
|
|
mkdir(file.fileName().left(slsh));
|
2018-07-17 13:11:07 +00:00
|
|
|
|
|
|
|
debug_msg(3, "opening output file %s", qPrintable(file.fileName()));
|
|
|
|
return file.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Truncate);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QString
|
|
|
|
MakefileGenerator::pkgConfigFileName(bool fixify)
|
|
|
|
{
|
2013-02-04 11:27:34 +00:00
|
|
|
QString ret = project->first("QMAKE_PKGCONFIG_FILE").toQString();
|
|
|
|
if (ret.isEmpty()) {
|
|
|
|
ret = project->first("TARGET").toQString();
|
|
|
|
int slsh = ret.lastIndexOf(Option::dir_sep);
|
|
|
|
if (slsh != -1)
|
|
|
|
ret = ret.right(ret.length() - slsh - 1);
|
|
|
|
if (ret.startsWith("lib"))
|
|
|
|
ret = ret.mid(3);
|
|
|
|
int dot = ret.indexOf('.');
|
|
|
|
if (dot != -1)
|
|
|
|
ret = ret.left(dot);
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
ret += Option::pkgcfg_ext;
|
2012-09-06 10:21:38 +00:00
|
|
|
QString subdir = project->first("QMAKE_PKGCONFIG_DESTDIR").toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!subdir.isEmpty()) {
|
|
|
|
// initOutPaths() appends dir_sep, but just to be safe..
|
|
|
|
if (!subdir.endsWith(Option::dir_sep))
|
|
|
|
ret.prepend(Option::dir_sep);
|
|
|
|
ret.prepend(subdir);
|
|
|
|
}
|
|
|
|
if(fixify) {
|
|
|
|
if(QDir::isRelativePath(ret) && !project->isEmpty("DESTDIR"))
|
2012-09-06 10:21:38 +00:00
|
|
|
ret.prepend(project->first("DESTDIR").toQString());
|
2015-04-13 19:18:36 +00:00
|
|
|
ret = fileFixify(ret, FileFixifyBackwards);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString
|
|
|
|
MakefileGenerator::pkgConfigPrefix() const
|
|
|
|
{
|
|
|
|
if(!project->isEmpty("QMAKE_PKGCONFIG_PREFIX"))
|
2012-09-06 10:21:38 +00:00
|
|
|
return project->first("QMAKE_PKGCONFIG_PREFIX").toQString();
|
2014-11-28 18:47:55 +00:00
|
|
|
return project->propertyValue(ProKey("QT_INSTALL_PREFIX")).toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QString
|
|
|
|
MakefileGenerator::pkgConfigFixPath(QString path) const
|
|
|
|
{
|
|
|
|
QString prefix = pkgConfigPrefix();
|
|
|
|
if(path.startsWith(prefix))
|
2016-02-04 14:12:03 +00:00
|
|
|
path.replace(prefix, QLatin1String("${prefix}"));
|
2011-04-27 10:05:43 +00:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MakefileGenerator::writePkgConfigFile()
|
|
|
|
{
|
2013-02-18 17:29:45 +00:00
|
|
|
QString fname = pkgConfigFileName();
|
2011-04-27 10:05:43 +00:00
|
|
|
mkdir(fileInfo(fname).path());
|
|
|
|
QFile ft(fname);
|
|
|
|
if(!ft.open(QIODevice::WriteOnly))
|
|
|
|
return;
|
2015-04-23 11:43:30 +00:00
|
|
|
QString ffname(fileFixify(fname));
|
|
|
|
project->values("ALL_DEPS").append(ffname);
|
|
|
|
project->values("QMAKE_DISTCLEAN").append(ffname);
|
2011-04-27 10:05:43 +00:00
|
|
|
QTextStream t(&ft);
|
|
|
|
|
|
|
|
QString prefix = pkgConfigPrefix();
|
2012-09-06 10:21:38 +00:00
|
|
|
QString libDir = project->first("QMAKE_PKGCONFIG_LIBDIR").toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
if(libDir.isEmpty())
|
2014-04-14 15:07:26 +00:00
|
|
|
libDir = prefix + "/lib";
|
2012-09-06 10:21:38 +00:00
|
|
|
QString includeDir = project->first("QMAKE_PKGCONFIG_INCDIR").toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
if(includeDir.isEmpty())
|
|
|
|
includeDir = prefix + "/include";
|
|
|
|
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "prefix=" << prefix << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
t << "exec_prefix=${prefix}\n"
|
|
|
|
<< "libdir=" << pkgConfigFixPath(libDir) << "\n"
|
2019-04-30 10:51:36 +00:00
|
|
|
<< "includedir=" << pkgConfigFixPath(includeDir) << Qt::endl;
|
|
|
|
t << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
//extra PKGCONFIG variables
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &pkgconfig_vars = project->values("QMAKE_PKGCONFIG_VARIABLES");
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int i = 0; i < pkgconfig_vars.size(); ++i) {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProString &var = project->first(ProKey(pkgconfig_vars.at(i) + ".name"));
|
2012-05-18 18:00:23 +00:00
|
|
|
QString val = project->values(ProKey(pkgconfig_vars.at(i) + ".value")).join(' ');
|
2011-04-27 10:05:43 +00:00
|
|
|
if(var.isEmpty())
|
|
|
|
continue;
|
|
|
|
if(val.isEmpty()) {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &var_vars = project->values(ProKey(pkgconfig_vars.at(i) + ".variable"));
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int v = 0; v < var_vars.size(); ++v) {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &vars = project->values(var_vars.at(v).toKey());
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int var = 0; var < vars.size(); ++var) {
|
|
|
|
if(!val.isEmpty())
|
|
|
|
val += " ";
|
2012-09-06 10:21:38 +00:00
|
|
|
val += pkgConfigFixPath(vars.at(var).toQString());
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-09-08 04:49:51 +00:00
|
|
|
if (!val.isEmpty())
|
2019-04-30 10:51:36 +00:00
|
|
|
t << var << "=" << val << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2019-04-30 10:51:36 +00:00
|
|
|
t << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
QString name = project->first("QMAKE_PKGCONFIG_NAME").toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
if(name.isEmpty()) {
|
2012-09-06 10:21:38 +00:00
|
|
|
name = project->first("QMAKE_ORIG_TARGET").toQString().toLower();
|
2011-04-27 10:05:43 +00:00
|
|
|
name.replace(0, 1, name[0].toUpper());
|
|
|
|
}
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "Name: " << name << Qt::endl;
|
2012-05-18 18:00:23 +00:00
|
|
|
QString desc = project->values("QMAKE_PKGCONFIG_DESCRIPTION").join(' ');
|
2011-04-27 10:05:43 +00:00
|
|
|
if(desc.isEmpty()) {
|
|
|
|
if(name.isEmpty()) {
|
2012-09-06 10:21:38 +00:00
|
|
|
desc = project->first("QMAKE_ORIG_TARGET").toQString().toLower();
|
2011-04-27 10:05:43 +00:00
|
|
|
desc.replace(0, 1, desc[0].toUpper());
|
|
|
|
} else {
|
|
|
|
desc = name;
|
|
|
|
}
|
|
|
|
if(project->first("TEMPLATE") == "lib") {
|
|
|
|
if(project->isActiveConfig("plugin"))
|
|
|
|
desc += " Plugin";
|
|
|
|
else
|
|
|
|
desc += " Library";
|
|
|
|
} else if(project->first("TEMPLATE") == "app") {
|
|
|
|
desc += " Application";
|
|
|
|
}
|
|
|
|
}
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "Description: " << desc << Qt::endl;
|
2013-10-22 03:28:27 +00:00
|
|
|
ProString version = project->first("QMAKE_PKGCONFIG_VERSION");
|
|
|
|
if (version.isEmpty())
|
|
|
|
version = project->first("VERSION");
|
|
|
|
if (!version.isEmpty())
|
2019-04-30 10:51:36 +00:00
|
|
|
t << "Version: " << version << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2019-06-03 12:52:49 +00:00
|
|
|
if (project->first("TEMPLATE") == "lib") {
|
|
|
|
// libs
|
|
|
|
t << "Libs: ";
|
|
|
|
QString pkgConfiglibName;
|
|
|
|
if (target_mode == TARG_MAC_MODE && project->isActiveConfig("lib_bundle")) {
|
|
|
|
if (libDir != QLatin1String("/Library/Frameworks"))
|
|
|
|
t << "-F${libdir} ";
|
|
|
|
ProString bundle;
|
|
|
|
if (!project->isEmpty("QMAKE_FRAMEWORK_BUNDLE_NAME"))
|
|
|
|
bundle = project->first("QMAKE_FRAMEWORK_BUNDLE_NAME");
|
|
|
|
else
|
|
|
|
bundle = project->first("TARGET");
|
|
|
|
int suffix = bundle.lastIndexOf(".framework");
|
|
|
|
if (suffix != -1)
|
|
|
|
bundle = bundle.left(suffix);
|
|
|
|
t << "-framework ";
|
|
|
|
pkgConfiglibName = bundle.toQString();
|
|
|
|
} else {
|
|
|
|
if (!project->values("QMAKE_DEFAULT_LIBDIRS").contains(libDir))
|
|
|
|
t << "-L${libdir} ";
|
|
|
|
pkgConfiglibName = "-l" + project->first("QMAKE_ORIG_TARGET");
|
|
|
|
if (project->isActiveConfig("shared"))
|
|
|
|
pkgConfiglibName += project->first("TARGET_VERSION_EXT").toQString();
|
|
|
|
}
|
|
|
|
t << shellQuote(pkgConfiglibName) << " \n";
|
|
|
|
|
|
|
|
if (project->isActiveConfig("staticlib")) {
|
|
|
|
ProStringList libs;
|
|
|
|
libs << "LIBS"; // FIXME: this should not be conditional on staticlib
|
|
|
|
libs << "LIBS_PRIVATE";
|
|
|
|
libs << "QMAKE_LIBS"; // FIXME: this should not be conditional on staticlib
|
|
|
|
libs << "QMAKE_LIBS_PRIVATE";
|
|
|
|
libs << "QMAKE_LFLAGS_THREAD"; //not sure about this one, but what about things like -pthread?
|
|
|
|
t << "Libs.private:";
|
2019-06-07 11:12:57 +00:00
|
|
|
for (ProStringList::ConstIterator it = libs.cbegin(); it != libs.cend(); ++it)
|
2019-06-03 12:52:49 +00:00
|
|
|
t << ' ' << fixLibFlags((*it).toKey()).join(' ');
|
2019-06-14 09:56:56 +00:00
|
|
|
t << Qt::endl;
|
2019-06-03 12:52:49 +00:00
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// flags
|
|
|
|
// ### too many
|
|
|
|
t << "Cflags: "
|
|
|
|
// << var("QMAKE_CXXFLAGS") << " "
|
|
|
|
<< varGlue("PRL_EXPORT_DEFINES","-D"," -D"," ")
|
2013-03-30 05:39:56 +00:00
|
|
|
<< varGlue("PRL_EXPORT_CXXFLAGS", "", " ", " ")
|
|
|
|
<< varGlue("QMAKE_PKGCONFIG_CFLAGS", "", " ", " ")
|
2011-04-27 10:05:43 +00:00
|
|
|
// << varGlue("DEFINES","-D"," -D"," ")
|
2014-04-14 14:27:01 +00:00
|
|
|
;
|
|
|
|
if (!project->values("QMAKE_DEFAULT_INCDIRS").contains(includeDir))
|
|
|
|
t << "-I${includedir}";
|
2018-06-06 20:34:33 +00:00
|
|
|
if (target_mode == TARG_MAC_MODE && project->isActiveConfig("lib_bundle")
|
|
|
|
&& libDir != QLatin1String("/Library/Frameworks")) {
|
|
|
|
t << " -F${libdir}";
|
|
|
|
}
|
2019-04-30 10:51:36 +00:00
|
|
|
t << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
// requires
|
2019-07-18 15:21:23 +00:00
|
|
|
const QString requiresString = project->values("QMAKE_PKGCONFIG_REQUIRES").join(' ');
|
|
|
|
if (!requiresString.isEmpty()) {
|
2019-07-22 04:50:42 +00:00
|
|
|
t << "Requires: " << requiresString << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2019-04-30 10:51:36 +00:00
|
|
|
t << Qt::endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2013-11-20 14:14:52 +00:00
|
|
|
static QString windowsifyPath(const QString &str)
|
|
|
|
{
|
|
|
|
// The paths are escaped in prl files, so every slash needs to turn into two backslashes.
|
|
|
|
// Then each backslash needs to be escaped for sed. And another level for C quoting here.
|
2016-02-04 14:12:03 +00:00
|
|
|
return QString(str).replace('/', QLatin1String("\\\\\\\\"));
|
2013-11-20 14:14:52 +00:00
|
|
|
}
|
|
|
|
|
2013-01-10 23:30:41 +00:00
|
|
|
QString MakefileGenerator::installMetaFile(const ProKey &replace_rule, const QString &src, const QString &dst)
|
|
|
|
{
|
|
|
|
QString ret;
|
|
|
|
if (project->isEmpty(replace_rule)
|
2013-10-11 14:25:01 +00:00
|
|
|
|| project->isActiveConfig("no_sed_meta_install")) {
|
2019-06-24 15:49:55 +00:00
|
|
|
ret += "$(INSTALL_FILE) " + escapeFilePath(src) + ' ' + escapeFilePath(dst);
|
2013-01-10 23:30:41 +00:00
|
|
|
} else {
|
2019-06-03 12:39:07 +00:00
|
|
|
QString sedargs;
|
2013-01-10 23:30:41 +00:00
|
|
|
const ProStringList &replace_rules = project->values(replace_rule);
|
|
|
|
for (int r = 0; r < replace_rules.size(); ++r) {
|
|
|
|
const ProString match = project->first(ProKey(replace_rules.at(r) + ".match")),
|
|
|
|
replace = project->first(ProKey(replace_rules.at(r) + ".replace"));
|
2013-11-20 14:14:52 +00:00
|
|
|
if (!match.isEmpty() /*&& match != replace*/) {
|
2019-06-03 12:39:07 +00:00
|
|
|
sedargs += " -e " + shellQuote("s," + match + "," + replace + ",g");
|
2013-11-20 14:14:52 +00:00
|
|
|
if (isWindowsShell() && project->first(ProKey(replace_rules.at(r) + ".CONFIG")).contains("path"))
|
2019-06-03 12:39:07 +00:00
|
|
|
sedargs += " -e " + shellQuote("s," + windowsifyPath(match.toQString())
|
2013-11-20 14:14:52 +00:00
|
|
|
+ "," + windowsifyPath(replace.toQString()) + ",gi");
|
|
|
|
}
|
2013-01-10 23:30:41 +00:00
|
|
|
}
|
2019-06-03 12:39:07 +00:00
|
|
|
if (sedargs.isEmpty()) {
|
2019-06-24 15:49:55 +00:00
|
|
|
ret += "$(INSTALL_FILE) " + escapeFilePath(src) + ' ' + escapeFilePath(dst);
|
2019-06-03 12:39:07 +00:00
|
|
|
} else {
|
2019-06-24 15:49:55 +00:00
|
|
|
ret += "$(SED) " + sedargs + ' ' + escapeFilePath(src) + " > " + escapeFilePath(dst);
|
2019-06-03 12:39:07 +00:00
|
|
|
}
|
2013-01-10 23:30:41 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-11-20 12:53:04 +00:00
|
|
|
QString MakefileGenerator::shellQuote(const QString &str)
|
|
|
|
{
|
2016-02-04 18:49:42 +00:00
|
|
|
return isWindowsShell() ? IoUtils::shellQuoteWin(str) : IoUtils::shellQuoteUnix(str);
|
2013-11-20 12:53:04 +00:00
|
|
|
}
|
|
|
|
|
2019-07-31 11:53:24 +00:00
|
|
|
/*
|
|
|
|
* Returns the name of the variable that contains the fully resolved target
|
|
|
|
* (including DESTDIR) of this generator.
|
|
|
|
*/
|
|
|
|
ProKey MakefileGenerator::fullTargetVariable() const
|
|
|
|
{
|
|
|
|
return "TARGET";
|
|
|
|
}
|
|
|
|
|
2020-06-05 15:59:01 +00:00
|
|
|
QString MakefileGenerator::createResponseFile(
|
|
|
|
const QString &baseName,
|
|
|
|
const ProStringList &objList,
|
|
|
|
const QString &prefix)
|
2019-11-04 14:54:24 +00:00
|
|
|
{
|
2019-12-22 07:36:31 +00:00
|
|
|
QString fileName = baseName + '.' + fileVar("QMAKE_ORIG_TARGET");
|
|
|
|
if (!var("BUILD_NAME").isEmpty())
|
|
|
|
fileName += '.' + var("BUILD_NAME");
|
|
|
|
if (!var("MAKEFILE").isEmpty())
|
|
|
|
fileName += '.' + var("MAKEFILE");
|
2019-11-04 14:54:24 +00:00
|
|
|
QString filePath = Option::output_dir + QDir::separator() + fileName;
|
|
|
|
QFile file(filePath);
|
2019-12-22 07:36:31 +00:00
|
|
|
if (!file.open(QIODevice::WriteOnly | QIODevice::Text))
|
|
|
|
return QString();
|
|
|
|
QTextStream t(&file);
|
|
|
|
for (ProStringList::ConstIterator it = objList.constBegin(); it != objList.constEnd(); ++it) {
|
|
|
|
QString path = (*it).toQString();
|
|
|
|
// In response files, whitespace and special characters are
|
|
|
|
// escaped with a backslash; backslashes themselves can either
|
|
|
|
// be escaped into double backslashes, or, as this is a list of
|
|
|
|
// path names, converted to forward slashes.
|
|
|
|
path.replace(QLatin1Char('\\'), QLatin1String("/"))
|
|
|
|
.replace(QLatin1Char(' '), QLatin1String("\\ "))
|
|
|
|
.replace(QLatin1Char('\t'), QLatin1String("\\\t"))
|
|
|
|
.replace(QLatin1Char('"'), QLatin1String("\\\""))
|
|
|
|
.replace(QLatin1Char('\''), QLatin1String("\\'"));
|
2020-06-05 15:59:01 +00:00
|
|
|
t << prefix << path << Qt::endl;
|
2019-12-22 07:36:31 +00:00
|
|
|
}
|
|
|
|
t.flush();
|
|
|
|
file.close();
|
|
|
|
return fileName;
|
2019-11-04 14:54:24 +00:00
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
QT_END_NAMESPACE
|