mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02:00
build-system: mix: Set deterministic compiler option.
* guix/build/mix-build-system.scm (set-mix-env): Set deterministic compiler option. Merges: https://codeberg.org/guix/guix/pulls/5550 Change-Id: Id9d353bf9747d79ec6e86603f9fb899a0c607cbb Signed-off-by: Giacomo Leidi <therewasa@fishinthecalculator.me>
This commit is contained in:
committed by
Giacomo Leidi
parent
067b7d1238
commit
e9bfe0893c
@@ -1,6 +1,6 @@
|
||||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2023 Pierre-Henry Fröhring <contact@phfrohring.com>
|
||||
;;; Copyright © 2024 Igor Goryachev <igor@goryachev.org>
|
||||
;;; Copyright © 2024, 2026 Igorj Gorjaĉev <igor@goryachev.org>
|
||||
;;; Copyright © 2024, 2025 Giacomo Leidi <therewasa@fishinthecalculator.me>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
@@ -97,6 +97,8 @@ See: https://hexdocs.pm/mix/1.15.7/Mix.html#module-environment-variables"
|
||||
(setenv "MIX_HOME" (getcwd))
|
||||
(setenv "MIX_PATH" (or mix-path ""))
|
||||
(setenv "MIX_REBAR3" (string-append (assoc-ref inputs "rebar3") "/bin/rebar3"))
|
||||
;; Set deterministic compiler option.
|
||||
(setenv "ERL_COMPILER_OPTIONS" "deterministic")
|
||||
;; Add Erlang dependencies in Elixir's load path.
|
||||
(setenv "ERL_LIBS"
|
||||
(string-join (search-path-as-list
|
||||
|
||||
Reference in New Issue
Block a user