| author | |
| committer | |
| log | 8807e934d840906f4b5bd2ad8fdaa6967c1922ea |
| tree | 8e25ac4ac5452870cf61108d4cd91b5066e2a5e4 |
| parent | 6c25d2bd58e4b5a002a7d1cd2882dd4e7ef23b6f |
3 files changed, 0 insertions(+), 22 deletions(-)
lib/std/Target.zig-3| ... | @@ -1194,9 +1194,6 @@ pub fn toCoffMachine(target: *const Target) std.coff.IMAGE.FILE.MACHINE { | ... | @@ -1194,9 +1194,6 @@ pub fn toCoffMachine(target: *const Target) std.coff.IMAGE.FILE.MACHINE { |
| 1194 | }; | 1194 | }; |
| 1195 | } | 1195 | } |
| 1196 | 1196 | ||
| 1197 | /// Deprecated; use 'std.zig.Subsystem' instead. To be removed after 0.16.0 is tagged. | ||
| 1198 | pub const SubSystem = std.zig.Subsystem; | ||
| 1199 | |||
| 1200 | pub const Cpu = struct { | 1197 | pub const Cpu = struct { |
| 1201 | /// Architecture | 1198 | /// Architecture |
| 1202 | arch: Arch, | 1199 | arch: Arch, |
lib/std/zig.zig-17| ... | @@ -386,23 +386,6 @@ pub const Subsystem = enum { | ... | @@ -386,23 +386,6 @@ pub const Subsystem = enum { |
| 386 | efi_boot_service_driver, | 386 | efi_boot_service_driver, |
| 387 | efi_rom, | 387 | efi_rom, |
| 388 | efi_runtime_driver, | 388 | efi_runtime_driver, |
| 389 | |||
| 390 | /// Deprecated; use '.console' instead. To be removed after 0.16.0 is tagged. | ||
| 391 | pub const Console: Subsystem = .console; | ||
| 392 | /// Deprecated; use '.windows' instead. To be removed after 0.16.0 is tagged. | ||
| 393 | pub const Windows: Subsystem = .windows; | ||
| 394 | /// Deprecated; use '.posix' instead. To be removed after 0.16.0 is tagged. | ||
| 395 | pub const Posix: Subsystem = .posix; | ||
| 396 | /// Deprecated; use '.native' instead. To be removed after 0.16.0 is tagged. | ||
| 397 | pub const Native: Subsystem = .native; | ||
| 398 | /// Deprecated; use '.efi_application' instead. To be removed after 0.16.0 is tagged. | ||
| 399 | pub const EfiApplication: Subsystem = .efi_application; | ||
| 400 | /// Deprecated; use '.efi_boot_service_driver' instead. To be removed after 0.16.0 is tagged. | ||
| 401 | pub const EfiBootServiceDriver: Subsystem = .efi_boot_service_driver; | ||
| 402 | /// Deprecated; use '.efi_rom' instead. To be removed after 0.16.0 is tagged. | ||
| 403 | pub const EfiRom: Subsystem = .efi_rom; | ||
| 404 | /// Deprecated; use '.efi_runtime_driver' instead. To be removed after 0.16.0 is tagged. | ||
| 405 | pub const EfiRuntimeDriver: Subsystem = .efi_runtime_driver; | ||
| 406 | }; | 389 | }; |
| 407 | 390 | ||
| 408 | pub const CompressDebugSections = enum(u2) { none, zlib, zstd }; | 391 | pub const CompressDebugSections = enum(u2) { none, zlib, zstd }; |
src/link/Lld.zig-2| ... | @@ -99,8 +99,6 @@ pub const Elf = struct { | ... | @@ -99,8 +99,6 @@ pub const Elf = struct { |
| 99 | bind_global_refs_locally: bool, | 99 | bind_global_refs_locally: bool, |
| 100 | pub const HashStyle = enum { sysv, gnu, both }; | 100 | pub const HashStyle = enum { sysv, gnu, both }; |
| 101 | pub const SortSection = enum { name, alignment }; | 101 | pub const SortSection = enum { name, alignment }; |
| 102 | /// Deprecated; use 'std.zig.CompressDebugSections' instead. To be removed after 0.16.0 is tagged. | ||
| 103 | pub const CompressDebugSections = std.zig.CompressDebugSections; | ||
| 104 | 102 | ||
| 105 | fn init(comp: *Compilation, options: link.File.OpenOptions) !Elf { | 103 | fn init(comp: *Compilation, options: link.File.OpenOptions) !Elf { |
| 106 | const PtrWidth = enum { p32, p64 }; | 104 | const PtrWidth = enum { p32, p64 }; |