Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
qt-creator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tobias Hunger
qt-creator
Commits
ac2f0f1c
"README.md" did not exist on "b19d76d903c6964ef1b4cba719c87a0d6afbeee3"
Commit
ac2f0f1c
authored
14 years ago
by
Tobias Hunger
Browse files
Options
Downloads
Patches
Plain Diff
Environment: Fix crash searching executables in windows
parent
b2ba7c70
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/libs/utils/environment.cpp
+43
-35
43 additions, 35 deletions
src/libs/utils/environment.cpp
src/libs/utils/environment.h
+2
-0
2 additions, 0 deletions
src/libs/utils/environment.h
with
45 additions
and
35 deletions
src/libs/utils/environment.cpp
+
43
−
35
View file @
ac2f0f1c
...
...
@@ -182,48 +182,56 @@ void Environment::clear()
}
QString
Environment
::
searchInPath
(
const
QString
&
executable
,
const
QStringList
&
additionalDirs
)
const
const
QStringList
&
additionalDirs
)
const
{
QString
exec
=
expandVariables
(
executable
);
QStringList
execs
;
execs
<<
executable
;
#ifdef Q_OS_WIN
// Check all the executable extensions on windows:
QStringList
extensions
=
value
(
QLatin1String
(
"PATHEXT"
)).
split
(
QLatin1Char
(
';'
));
if
(
exec
.
isEmpty
()
||
QFileInfo
(
exec
).
isAbsolute
())
return
QDir
::
toNativeSeparators
(
exec
);
// .exe.bat is legal (and run when starting new.exe), so always go through the complete list once:
foreach
(
const
QString
&
ext
,
extensions
)
execs
<<
executable
+
ext
.
toLower
();
#endif
return
searchInPath
(
execs
,
additionalDirs
);
}
// Check in directories:
foreach
(
const
QString
&
dir
,
additionalDirs
)
{
if
(
dir
.
isEmpty
())
continue
;
QFileInfo
fi
(
dir
+
QLatin1Char
(
'/'
)
+
exec
);
if
(
fi
.
isFile
()
&&
fi
.
isExecutable
())
return
fi
.
absoluteFilePath
();
}
QString
Environment
::
searchInPath
(
const
QStringList
&
executables
,
const
QStringList
&
additionalDirs
)
const
{
foreach
(
const
QString
&
executable
,
executables
)
{
QString
exec
=
expandVariables
(
executable
);
// Check in path:
if
(
exec
.
indexOf
(
QChar
(
'/'
))
!=
-
1
)
return
QString
();
const
QChar
slash
=
QLatin1Char
(
'/'
);
foreach
(
const
QString
&
p
,
path
())
{
QString
fp
=
p
;
fp
+=
slash
;
fp
+=
exec
;
const
QFileInfo
fi
(
fp
);
if
(
fi
.
exists
())
return
fi
.
absoluteFilePath
();
}
if
(
exec
.
isEmpty
())
continue
;
#ifdef Q_OS_WIN
// Check all the executable extensions on windows:
QStringList
extensions
=
value
(
QLatin1String
(
"PATHEXT"
)).
split
(
QLatin1Char
(
';'
));
if
(
extensions
.
isEmpty
())
extensions
.
append
(
QLatin1String
(
".exe"
));
QFileInfo
baseFi
(
exec
);
if
(
baseFi
.
isAbsolute
()
&&
baseFi
.
exists
())
return
QDir
::
toNativeSeparators
(
exec
);
// Check in directories:
foreach
(
const
QString
&
dir
,
additionalDirs
)
{
if
(
dir
.
isEmpty
())
continue
;
QFileInfo
fi
(
dir
+
QLatin1Char
(
'/'
)
+
exec
);
if
(
fi
.
isFile
()
&&
fi
.
isExecutable
())
return
fi
.
absoluteFilePath
();
}
// .exe.bat is legal (and run when starting new.exe), so always go through the complete list:
foreach
(
const
QString
&
ext
,
extensions
)
{
QString
result
=
searchInPath
(
exec
+
ext
.
toLower
(),
additionalDirs
);
if
(
!
result
.
isEmpty
())
return
result
;
// Check in path:
const
QChar
slash
=
QLatin1Char
(
'/'
);
if
(
exec
.
indexOf
(
slash
)
!=
-
1
)
continue
;
foreach
(
const
QString
&
p
,
path
())
{
QString
fp
=
p
;
fp
+=
slash
;
fp
+=
exec
;
const
QFileInfo
fi
(
fp
);
if
(
fi
.
exists
())
return
fi
.
absoluteFilePath
();
}
}
#endif
return
QString
();
}
...
...
This diff is collapsed.
Click to expand it.
src/libs/utils/environment.h
+
2
−
0
View file @
ac2f0f1c
...
...
@@ -103,6 +103,8 @@ public:
bool
operator
!=
(
const
Environment
&
other
)
const
;
bool
operator
==
(
const
Environment
&
other
)
const
;
private:
QString
searchInPath
(
const
QStringList
&
executables
,
const
QStringList
&
additionalDirs
=
QStringList
())
const
;
QMap
<
QString
,
QString
>
m_values
;
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment