-
-
Notifications
You must be signed in to change notification settings - Fork 14.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56029 from matthewbauer/revert-cctools-bump
Revert cctools bump
- Loading branch information
Showing
5 changed files
with
172 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
diff --git a/cctools/ld64/src/ld/parsers/textstub_dylib_file.cpp b/cctools/ld64/src/ld/parsers/textstub_dylib_file.cpp | ||
index 09c0e12..ac6b085 100644 | ||
--- a/cctools/ld64/src/ld/parsers/textstub_dylib_file.cpp | ||
+++ b/cctools/ld64/src/ld/parsers/textstub_dylib_file.cpp | ||
@@ -187,6 +187,7 @@ struct DynamicLibrary { | ||
ld::File::ObjcConstraint _objcConstraint; | ||
Options::Platform _platform; | ||
std::vector<Token> _allowedClients; | ||
+ std::vector<Token> _allowableClients; | ||
std::vector<Token> _reexportedLibraries; | ||
std::vector<Token> _symbols; | ||
std::vector<Token> _classes; | ||
@@ -246,6 +247,14 @@ class TBDFile { | ||
}); | ||
} | ||
|
||
+ void parseAllowableClients(DynamicLibrary& lib) { | ||
+ if ( !hasOptionalToken("allowable-clients") ) | ||
+ return; | ||
+ parseFlowSequence([&](Token name) { | ||
+ lib._allowableClients.emplace_back(name); | ||
+ }); | ||
+ } | ||
+ | ||
void parseReexportedDylibs(DynamicLibrary& lib) { | ||
if ( !hasOptionalToken("re-exports") ) | ||
return; | ||
@@ -306,6 +315,21 @@ class TBDFile { | ||
return false; | ||
} | ||
|
||
+ void skipUUIDs(DynamicLibrary& lib) { | ||
+ expectToken("uuids"); | ||
+ while ( true ) { | ||
+ auto token = next(); | ||
+ if ( token == "]" ) | ||
+ break; | ||
+ } | ||
+ } | ||
+ | ||
+ void skipParentUmbrella(DynamicLibrary& lib) { | ||
+ if (!hasOptionalToken("parent-umbrella")) | ||
+ return; | ||
+ next(); | ||
+ } | ||
+ | ||
void parsePlatform(DynamicLibrary& lib) { | ||
expectToken("platform"); | ||
|
||
@@ -410,6 +434,7 @@ class TBDFile { | ||
} | ||
|
||
parseAllowedClients(lib); | ||
+ parseAllowableClients(lib); | ||
parseReexportedDylibs(lib); | ||
parseSymbols(lib); | ||
if ( !hasOptionalToken("-") ) | ||
@@ -455,17 +480,21 @@ class TBDFile { | ||
return result.front(); | ||
} | ||
|
||
- void parseDocument(DynamicLibrary& lib, std::string &requestedArchName) { | ||
+ void parseDocument(DynamicLibrary& lib, std::string &requestedArchName, bool isTbdV2) { | ||
auto selectedArchName = parseAndSelectArchitecture(requestedArchName); | ||
if (selectedArchName.empty()) | ||
throwf("invalid arch"); | ||
|
||
+ if(isTbdV2) | ||
+ skipUUIDs(lib); | ||
parsePlatform(lib); | ||
parseInstallName(lib); | ||
parseCurrentVersion(lib); | ||
parseCompatibilityVersion(lib); | ||
parseSwiftVersion(lib); | ||
parseObjCConstraint(lib); | ||
+ if(isTbdV2) | ||
+ skipParentUmbrella(lib); | ||
parseExportsBlock(lib, selectedArchName); | ||
} | ||
|
||
@@ -476,7 +505,8 @@ public: | ||
_tokenizer.reset(); | ||
DynamicLibrary lib; | ||
expectToken("---"); | ||
- parseDocument(lib, requestedArchName); | ||
+ auto isTbdV2 = hasOptionalToken("!tapi-tbd-v2"); | ||
+ parseDocument(lib, requestedArchName, isTbdV2); | ||
expectToken("..."); | ||
return lib; | ||
} | ||
@@ -486,6 +516,7 @@ public: | ||
auto token = next(); | ||
if ( token != "---" ) | ||
return false; | ||
+ hasOptionalToken("!tapi-tbd-v2"); | ||
return !parseAndSelectArchitecture(requestedArchName).empty(); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/cctools/configure.ac b/cctools/configure.ac | ||
index 56e8f24..0b4b3ff 100644 | ||
--- a/cctools/configure.ac | ||
+++ b/cctools/configure.ac | ||
@@ -39,7 +39,7 @@ EXTRACXXFLAGS="" | ||
WARNINGS="" | ||
|
||
case $host_os in | ||
- darwin* ) | ||
+ darwin* | ios*) | ||
isdarwin=yes | ||
AM_CONDITIONAL([ISDARWIN], [true]) | ||
;; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
diff --git a/cctools/as/driver.c b/cctools/as/driver.c | ||
index b06d085..c03397a 100644 | ||
--- a/cctools/as/driver.c | ||
+++ b/cctools/as/driver.c | ||
@@ -363,12 +363,6 @@ char **envp) | ||
/* Add -c or clang will run ld(1). */ | ||
new_argv[j] = "-c"; | ||
j++; | ||
- /* cctools-port start */ | ||
- new_argv[j] = "-target"; | ||
- j++; | ||
- new_argv[j] = "unknown-apple-darwin"; | ||
- j++; | ||
- /* cctools-port end */ | ||
new_argv[j] = NULL; | ||
if(execute(new_argv, verbose)) | ||
exit(0); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters