Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Clang][Darwin] Introduce SubFrameworks as a SDK default location #115048

Merged
merged 4 commits into from
Nov 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion clang/lib/InstallAPI/DirectoryScanner.cpp
Original file line number Diff line number Diff line change
@@ -277,7 +277,8 @@ llvm::Error DirectoryScanner::scanForFrameworks(StringRef Directory) {
// Expect a certain directory structure and naming convention to find
// frameworks.
static const char *SubDirectories[] = {"System/Library/Frameworks/",
"System/Library/PrivateFrameworks/"};
"System/Library/PrivateFrameworks/",
"System/Library/SubFrameworks"};

// Check if the directory is already a framework.
if (isFramework(Directory)) {
1 change: 1 addition & 0 deletions clang/lib/Lex/InitHeaderSearch.cpp
Original file line number Diff line number Diff line change
@@ -346,6 +346,7 @@ void InitHeaderSearch::AddDefaultIncludePaths(
AddPath("/System/DriverKit/System/Library/Frameworks", System, true);
} else {
AddPath("/System/Library/Frameworks", System, true);
AddPath("/System/Library/SubFrameworks", System, true);
AddPath("/Library/Frameworks", System, true);
}
}
18 changes: 18 additions & 0 deletions clang/test/Driver/darwin-subframeworks.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// UNSUPPORTED: system-windows
// Windows is unsupported because we use the Unix path separator `\`.

// Add default directories before running clang to check default
// search paths.
// RUN: rm -rf %t && mkdir -p %t
// RUN: cp -R %S/Inputs/MacOSX15.1.sdk %t/
// RUN: mkdir -p %t/MacOSX15.1.sdk/System/Library/Frameworks
// RUN: mkdir -p %t/MacOSX15.1.sdk/System/Library/SubFrameworks
// RUN: mkdir -p %t/MacOSX15.1.sdk/usr/include

// RUN: %clang %s -target arm64-apple-darwin13.0 -isysroot %t/MacOSX15.1.sdk -E -v 2>&1 | FileCheck %s

// CHECK: -isysroot [[PATH:[^ ]*/MacOSX15.1.sdk]]
// CHECK: #include <...> search starts here:
// CHECK: [[PATH]]/usr/include
// CHECK: [[PATH]]/System/Library/Frameworks (framework directory)
// CHECK: [[PATH]]/System/Library/SubFrameworks (framework directory)
3 changes: 3 additions & 0 deletions llvm/lib/TextAPI/Utils.cpp
Original file line number Diff line number Diff line change
@@ -120,6 +120,9 @@ bool llvm::MachO::isPrivateLibrary(StringRef Path, bool IsSymLink) {
if (Path.starts_with("/System/Library/PrivateFrameworks"))
return true;

if (Path.starts_with("/System/Library/SubFrameworks"))
return true;

// Everything in /usr/lib/swift (including sub-directories) are considered
// public.
if (Path.consume_front("/usr/lib/swift/"))
7 changes: 5 additions & 2 deletions llvm/test/tools/llvm-readtapi/stubify-delete.test
Original file line number Diff line number Diff line change
@@ -2,17 +2,20 @@
# Setup a mix of public and private libraries that resemble apple sdk.
; RUN: mkdir -p %t/sysroot/usr/local/lib/ %t/sysroot/usr/lib/
; RUN: mkdir -p %t/sysroot/System/Library/Frameworks/System.framework %t/sysroot/System/Library/PrivateFrameworks/Fat.framework
; RUN: mkdir -p %t/sysroot/System/Library/SubFrameworks/Fat.framework/Headers
; RUN: yaml2obj %S/Inputs/libSystem.1.yaml -o %t/sysroot/System/Library/Frameworks/System.framework/System
; RUN: yaml2obj %S/Inputs/objc.yaml -o %t/sysroot/usr/lib/libobjc.dylib
; RUN: cp %t/sysroot/usr/lib/libobjc.dylib %t/sysroot/usr/local/lib/libobjc-unstable.dylib
; RUN: yaml2obj %S/Inputs/universal.yaml -o %t/sysroot/System/Library/PrivateFrameworks/Fat.framework/Fat
; RUN: cp %t/sysroot/System/Library/PrivateFrameworks/Fat.framework/Fat %t/sysroot/System/Library/SubFrameworks/Fat.framework/Fat
; RUN: touch %t/sysroot/System/Library/SubFrameworks/Fat.framework/Headers/Fat.h
; RUN: llvm-readtapi -stubify %t/sysroot --delete-input --delete-private-libraries 2>&1 | FileCheck %s --allow-empty --implicit-check-not warning: --implicit-check-not error:
# Validate expected files are removed.
; RUN: not test -f %t/sysroot/System/Library/PrivateFrameworks
; RUN: not test -f %t/sysroot/usr/local
; RUN: not test -f %t/sysroot/usr/lib/libobjc.dylib
; RUN: not test -f %t/sysroot/System/Library/Frameworks/System.framework/System
; RUN: not test -f %t/sysroot/System/Library/SubFrameworks/Fat.framework/Fat
; RUN: test -f %t/sysroot/System/Library/Frameworks/System.framework/System.tbd
; RUN: test -f %t/sysroot/usr/lib/libobjc.tbd


; RUN: test -f %t/sysroot/System/Library/SubFrameworks/Fat.framework/Headers/Fat.h
19 changes: 12 additions & 7 deletions llvm/tools/llvm-readtapi/llvm-readtapi.cpp
Original file line number Diff line number Diff line change
@@ -255,16 +255,21 @@ static void stubifyDirectory(const StringRef InputPath, Context &Ctx) {
if (EC)
reportError(IT->path() + ": " + EC.message());

// Skip header directories (include/Headers/PrivateHeaders) and module
// files.
// Skip header directories (include/Headers/PrivateHeaders).
StringRef Path = IT->path();
if (Path.ends_with("/include") || Path.ends_with("/Headers") ||
Path.ends_with("/PrivateHeaders") || Path.ends_with("/Modules") ||
Path.ends_with(".map") || Path.ends_with(".modulemap")) {
IT.no_push();
continue;
if (sys::fs::is_directory(Path)) {
const StringRef Stem = sys::path::stem(Path);
if ((Stem == "include") || (Stem == "Headers") ||
(Stem == "PrivateHeaders") || (Stem == "Modules")) {
IT.no_push();
continue;
}
}

// Skip module files too.
if (Path.ends_with(".map") || Path.ends_with(".modulemap"))
continue;

// Check if the entry is a symlink. We don't follow symlinks but we record
// their content.
bool IsSymLink;
Loading