diff options
author | p01arst0rm <polar@ever3st.com> | 2019-10-24T10·15+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-05-17T14·55+0100 |
commit | 9974eca8a01e1c9567afea558aaf428d7fe07b5d (patch) | |
tree | f6d6c39a6012e1a70156f9829eacff59eda2422c /third_party/nix/meson_options.txt | |
parent | 055139ac6aaecc7193972b65d2bcca022969c61d (diff) |
feat(3p/nix): minor improvements r/727
(cherry picked from commit f6f7046acfaf90c19c597687d384b491c852b4c6)
Diffstat (limited to 'third_party/nix/meson_options.txt')
-rw-r--r-- | third_party/nix/meson_options.txt | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/third_party/nix/meson_options.txt b/third_party/nix/meson_options.txt index 2c8bb676d408..b7aa5bd27949 100644 --- a/third_party/nix/meson_options.txt +++ b/third_party/nix/meson_options.txt @@ -4,13 +4,15 @@ # dirs #============================================================================ - option( 'nixstoredir', type : 'string', value : '/nix/store', description : 'path of the Nix store (defaults to /nix/store)') + + + # compiler args #============================================================================ @@ -134,6 +136,13 @@ option( '-lsqlite3'], description : 'link args for sqlite3') +option( + 'gc_link_args', + type : 'array', + value : [ + '-L/usr/local/lib', + '-lgc'], + description : 'link args for boehm garbage collector') |