File tree 4 files changed +13
-7
lines changed 4 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 8
8
cd janet
9
9
meson setup build --buildtype=release
10
10
cd build
11
- meson configure -Dsingle_threaded=true
12
- meson configure -Dnanbox=false
11
+ meson configure -Dsingle_threaded=true
12
+ meson configure -Dnanbox=false
13
13
meson configure -Ddynamic_modules=false
14
14
meson configure -Ddocstrings=false
15
15
meson configure -Dnet=false
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
All notable changes to this project will be documented in this file.
3
3
4
- ## Unreleased - ???
4
+ ## 1.9.1 - 2020-05-12
5
+ - Add : prefix option to declare-source
6
+ - Re-enable minimal builds with the debugger.
7
+ - Add several flags for configuring Janet on different platforms.
5
8
- Fix broken meson build from 1.9.0 and add meson to CI.
6
9
- Fix compilation issue when nanboxing is disabled.
7
10
Original file line number Diff line number Diff line change @@ -833,8 +833,11 @@ int main(int argc, const char **argv) {
833
833
(install-rule sname path )))
834
834
835
835
(defn declare-source
836
- " Create a Janet modules. This does not actually build the module(s),
837
- but registers it for packaging and installation."
836
+ " Create Janet modules. This does not actually build the module(s),
837
+ but registers them for packaging and installation. :source should be an
838
+ array of files and directores to copy into JANET_MODPATH or JANET_PATH.
839
+ :prefix can optionally be given to modify the destination path to be
840
+ (string JANET_PATH prefix source)."
838
841
[&keys {:source sources :prefix prefix }]
839
842
(def path (string (dyn :modpath JANET_MODPATH ) (or prefix " " )))
840
843
(if (bytes? sources )
Original file line number Diff line number Diff line change 29
29
#define JANET_VERSION_MAJOR 1
30
30
#define JANET_VERSION_MINOR 9
31
31
#define JANET_VERSION_PATCH 1
32
- #define JANET_VERSION_EXTRA "-dev "
33
- #define JANET_VERSION "1.9.1-dev "
32
+ #define JANET_VERSION_EXTRA ""
33
+ #define JANET_VERSION "1.9.1"
34
34
35
35
/* #define JANET_BUILD "local" */
36
36
You can’t perform that action at this time.
0 commit comments