aboutsummaryrefslogtreecommitdiff
path: root/lib/std/Build/Step/Compile.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-06-13 14:53:41 -0700
committerGitHub <noreply@github.com>2023-06-13 14:53:41 -0700
commit38fc826a5a82bbe11a893be11d3cc1439c477ee8 (patch)
treea6f1d07274887a20818b8e9f0798f1f74c318de5 /lib/std/Build/Step/Compile.zig
parent700ea694b293565ececb7571e4d9613d2c143ca6 (diff)
parentd884d7050e061c620324aaaabfba507e08cb40f4 (diff)
downloadzig-38fc826a5a82bbe11a893be11d3cc1439c477ee8.tar.gz
zig-38fc826a5a82bbe11a893be11d3cc1439c477ee8.zip
Merge pull request #15957 from BratishkaErik/deprecated-
std.*: remove stuff that was deprecated in older versions
Diffstat (limited to 'lib/std/Build/Step/Compile.zig')
-rw-r--r--lib/std/Build/Step/Compile.zig5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/std/Build/Step/Compile.zig b/lib/std/Build/Step/Compile.zig
index 7d8647a1cc..092fdf7e63 100644
--- a/lib/std/Build/Step/Compile.zig
+++ b/lib/std/Build/Step/Compile.zig
@@ -1032,11 +1032,6 @@ pub fn addObject(self: *Compile, obj: *Compile) void {
self.linkLibraryOrObject(obj);
}
-pub const addSystemIncludeDir = @compileError("deprecated; use addSystemIncludePath");
-pub const addIncludeDir = @compileError("deprecated; use addIncludePath");
-pub const addLibPath = @compileError("deprecated, use addLibraryPath");
-pub const addFrameworkDir = @compileError("deprecated, use addFrameworkPath");
-
pub fn addSystemIncludePath(self: *Compile, path: []const u8) void {
const b = self.step.owner;
self.include_dirs.append(IncludeDir{ .raw_path_system = b.dupe(path) }) catch @panic("OOM");