From 60c6a0d33497feb7342d81802fce411a3a9c7178 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Thu, 29 Apr 2021 13:11:46 -0500 Subject: [PATCH] Add :native-deps option to `jpm`. Use is like: ``` (declare-native :name "my-nuermical-library" :source @["numerical_lib.c"] :native-deps ["tarray"]) ``` Where `tarray` is a native generated by o ne of the project dependencies. This will lets us move more C functionality out of the core of Janet while still allowing it's use from natives. --- CHANGELOG.md | 2 ++ jpm | 33 +++++++++++---------------------- 2 files changed, 13 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e208a657..fcd5cd0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. ## ??? - Unreleased +- Add `native-deps` option to `decalre-native` in `jpm`. This lets native libraries link to other + native libraries when building with jpm. - Remove the `tarray` module. The functionality of typed arrays will be moved to an external module that can be installed via `jpm`. - Add `from-pairs` to core. diff --git a/jpm b/jpm index 8bc62a65..fe53ac41 100755 --- a/jpm +++ b/jpm @@ -523,29 +523,18 @@ (string hpath `\\janet.lib`)) (defn- link-c - "Link C object files together to make a native module." - [opts target & objects] - (def linker (opt opts (if is-win :linker :compiler) default-linker)) - (def cflags (getcflags opts)) + "Link C or C++ object files together to make a native module." + [has-cpp opts target & objects] + (def linker + (if has-cpp + (opt opts (if is-win :cpp-linker :cpp-compiler) default-cpp-linker) + (opt opts (if is-win :linker :compiler) default-linker))) + (def cflags ((if has-cpp getcppflags getcflags) opts)) (def lflags [;(opt opts :lflags default-lflags) ;(if (opts :static) [] dynamic-lflags)]) - (def ldflags [;(opt opts :ldflags [])]) - (rule target objects - (check-cc) - (print "linking " target "...") - (create-dirs target) - (if is-win - (shell linker ;ldflags (string "/OUT:" target) ;objects (win-import-library) ;lflags) - (shell linker ;cflags ;ldflags `-o` target ;objects ;lflags)))) - -(defn- link-cpp - "Link C++ object files together to make a native module." - [opts target & objects] - (def linker (opt opts (if is-win :cpp-linker :cpp-compiler) default-cpp-linker)) - (def cflags (getcppflags opts)) - (def lflags [;(opt opts :lflags default-lflags) - ;(if (opts :static) [] dynamic-lflags)]) - (def ldflags [;(opt opts :ldflags [])]) + (def deplibs (get opts :native-deps [])) + (def dep-ldflags (seq [x :in deplibs] (string (dyn :modpath JANET_MODPATH) sep x modext))) + (def ldflags [;(opt opts :ldflags []) ;dep-ldflags]) (rule target objects (check-cc) (print "linking " target "...") @@ -990,7 +979,7 @@ int main(int argc, const char **argv) { (array/push objects o-src) (create-buffer-c src c-src (embed-name src)) (compile-c opts c-src o-src))) - ((if has-cpp link-cpp link-c) opts lname ;objects) + (link-c has-cpp opts lname ;objects) (add-dep "build" lname) (install-rule lname path)