rename mzte-nv

This commit is contained in:
LordMZTE 2022-10-20 15:38:12 +02:00
parent 356fd16258
commit 7900d2925e
Signed by: LordMZTE
GPG key ID: B64802DC33A64FF6
10 changed files with 64 additions and 30 deletions

View file

@ -1,9 +1,9 @@
-- This module is responsible for loading the native mzte_nv lua module
package.cpath = package.cpath .. ";" .. vim.loop.os_homedir() .. "/.local/share/nvim/mzte_nv.so"
-- This module is responsible for loading the native mzte-nv lua module
package.cpath = package.cpath .. ";" .. vim.loop.os_homedir() .. "/.local/share/nvim/mzte-nv.so"
local success = pcall(require, "mzte_nv");
if not success then
error "Failed to preload mzte_nv. Is it installed?"
error "Failed to preload mzte-nv. Is it installed?"
end
require("mzte_nv").onInit()

View file

@ -36,5 +36,4 @@ install-lsps-paru:
install-mzte-nv:
cd mzte_nv && zig build -Drelease-fast
cp mzte_nv/zig-out/lib/libmzte_nv.so ~/.local/share/nvim/mzte_nv.so
cd mzte-nv && zig build -Drelease-fast -p ~/.local

View file

@ -1,3 +1,3 @@
# mzte_nv
# mzte-nv
Native components of my neovim config, implemented as a native LuaJIT module.

59
mzte-nv/build.zig Normal file
View file

@ -0,0 +1,59 @@
const std = @import("std");
pub fn build(b: *std.build.Builder) !void {
if (@import("builtin").os.tag == .windows)
@compileError("no lol");
// Standard release options allow the person running `zig build` to select
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall.
const mode = b.standardReleaseOptions();
const lib = b.addSharedLibrary("mzte-nv", "src/main.zig", .unversioned);
lib.setBuildMode(mode);
lib.linkLibC();
lib.linkSystemLibrary("luajit");
lib.strip = mode != .Debug;
lib.unwind_tables = true;
b.getInstallStep().dependOn(&(try InstallStep.init(b, lib)).step);
}
const InstallStep = struct {
builder: *std.build.Builder,
step: std.build.Step,
lib: *std.build.LibExeObjStep,
fn init(builder: *std.build.Builder, lib: *std.build.LibExeObjStep) !*InstallStep {
const self = try builder.allocator.create(InstallStep);
self.* = .{
.builder = builder,
.lib = lib,
.step = std.build.Step.init(.custom, "install", builder.allocator, make),
};
self.step.dependOn(&lib.step);
return self;
}
fn make(step: *std.build.Step) anyerror!void {
const self = @fieldParentPtr(InstallStep, "step", step);
const plugin_install_dir = std.build.InstallDir{
.custom = "share/nvim",
};
const plugin_basename = "mzte-nv.so";
const dest_path = self.builder.getInstallPath(
plugin_install_dir,
plugin_basename,
);
try self.builder.updateFile(
self.lib.getOutputSource().getPath(self.builder),
dest_path,
);
// FIXME: the uninstall step doesn't do anything, despite this
self.builder.pushInstalledFile(plugin_install_dir, plugin_basename);
}
};

View file

@ -1,24 +0,0 @@
const std = @import("std");
pub fn build(b: *std.build.Builder) void {
// Standard release options allow the person running `zig build` to select
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall.
const mode = b.standardReleaseOptions();
const lib = b.addSharedLibrary("mzte_nv", "src/main.zig", .unversioned);
lib.setBuildMode(mode);
lib.linkLibC();
lib.linkSystemLibrary("luajit");
lib.strip = mode != .Debug;
lib.unwind_tables = true;
lib.install();
const main_tests = b.addTest("src/main.zig");
main_tests.setBuildMode(mode);
const test_step = b.step("test", "Run library tests");
test_step.dependOn(&main_tests.step);
}