From 20e1e84884376b3fb44ffbfd48d478b2934b0b5e Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Tue, 28 Mar 2023 11:39:01 -0500 Subject: [PATCH] deploy : add a Package.swift for SwiftPM support (#393) * Add a Package.swift for SwiftPM support * Swap from exclusions to allowlist --- .gitignore | 5 +++++ Package.swift | 20 ++++++++++++++++++++ spm-headers/llama.h | 1 + 3 files changed, 26 insertions(+) create mode 100644 Package.swift create mode 120000 spm-headers/llama.h diff --git a/.gitignore b/.gitignore index 053311f..741c6b4 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ .vscode/ .DS_Store +.build/ build/ build-em/ build-debug/ @@ -27,3 +28,7 @@ compile_commands.json .envrc .direnv/ + +.venv +__pycache__ +.swiftpm diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..79d13c8 --- /dev/null +++ b/Package.swift @@ -0,0 +1,20 @@ +// swift-tools-version:5.3 + +import PackageDescription + +let package = Package( + name: "llama", + products: [ + .library(name: "llama", targets: ["llama"]), + ], + targets: [ + .target( + name: "llama", + path: ".", + sources: ["ggml.c", "llama.cpp"], + publicHeadersPath: "spm-headers", + cSettings: [.unsafeFlags(["-Wno-shorten-64-to-32"])] + ), + ], + cxxLanguageStandard: .cxx11 +) diff --git a/spm-headers/llama.h b/spm-headers/llama.h new file mode 120000 index 0000000..9acceb9 --- /dev/null +++ b/spm-headers/llama.h @@ -0,0 +1 @@ +../llama.h \ No newline at end of file