diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-02-24 16:02:01 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-02-24 23:48:03 -0500 |
| commit | 26196be344e971c26ed044a39b68d0420cd94b90 (patch) | |
| tree | 7c8c69a6876d50e872dc036e7dbd845ce564c70a /lib/std/Build/Step.zig | |
| parent | 6398aabb87cc39ddbc4e8fd650545ffcc864f9a6 (diff) | |
| download | zig-26196be344e971c26ed044a39b68d0420cd94b90.tar.gz zig-26196be344e971c26ed044a39b68d0420cd94b90.zip | |
rename std.Build.InstallRawStep to ObjCopyStep
And make it not do any installation, only objcopying. We already have
install steps for doing installation.
This commit also makes ObjCopyStep properly integrate with caching.
Diffstat (limited to 'lib/std/Build/Step.zig')
| -rw-r--r-- | lib/std/Build/Step.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/std/Build/Step.zig b/lib/std/Build/Step.zig index ff0ceb2a51..82c39ac2cc 100644 --- a/lib/std/Build/Step.zig +++ b/lib/std/Build/Step.zig @@ -21,7 +21,7 @@ pub const Id = enum { check_file, check_object, config_header, - install_raw, + objcopy, options, custom, @@ -42,7 +42,7 @@ pub const Id = enum { .check_file => Build.CheckFileStep, .check_object => Build.CheckObjectStep, .config_header => Build.ConfigHeaderStep, - .install_raw => Build.InstallRawStep, + .objcopy => Build.ObjCopyStep, .options => Build.OptionsStep, .custom => @compileError("no type available for custom step"), }; |
