all: remove support for stage1
With almost all tests/examples working on all platforms now with the new compiler, https://github.com/hexops/mach/issues/180, it's time to remove stage1 support. Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
parent
4c3a19fc26
commit
8113ca370d
22 changed files with 86 additions and 1907 deletions
|
|
@ -1,10 +1,7 @@
|
|||
//! Note: All the above requests can be blocking - dbus requests can and will block while the daemon
|
||||
//! handles the request. It is not recommended to make these calls in performance critical code
|
||||
const builtin = @import("builtin");
|
||||
pub const c = if (builtin.zig_backend == .stage1)
|
||||
@import("gamemode_client_stage1.zig")
|
||||
else
|
||||
@import("gamemode_client.zig");
|
||||
pub const c = @import("gamemode_client.zig");
|
||||
|
||||
pub const GamemodeError = error{
|
||||
RequestFailed,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue