git-svn-id: svn://db.shs.com.ru/libs@849 a8b55f48-bf90-11e4-a774-851b48703e85

This commit is contained in:
2020-03-18 20:37:38 +00:00
parent 681969c88a
commit 3de59d471e

View File

@@ -67,7 +67,7 @@ int depth = 1;
bool need_qt = false, fake = false, is_ldd = true;
PIString ldd, readelf, objdump, otool, out_dir, qt_dir, out_plugins_dir;
PIStringList styles, lib_dirs, add_libs, platforms;
PISet<PIString> all_libs, miss_libs, checked_libs, frameworks, miss_frameworks;
PISet<PIString> all_libs, miss_libs, frameworks, miss_frameworks;
PIString findLib(const PIString & l) {
@@ -82,11 +82,9 @@ PIString findLib(const PIString & l) {
void procLdd(PIString file, bool ext_lib = false, int cur_depth = 0) {
if (checked_libs[file]) return;
checked_libs << file;
++cur_depth;
if (cur_depth > depth) return;
piCout << "scan" << file << "..." << cur_depth << checked_libs;
piCout << "scan" << file << "..." << cur_depth;
PISet<PIString> cur_libs;
if (ext_lib) {
if (!all_libs[file]) {