diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-06-25 14:54:58 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-06-25 17:41:24 +0200 |
commit | 77c2899cd409d0bafecf2253b1656487da09adc0 (patch) | |
tree | 20654b892e5aabfc3277ee8a07c6f9e023794787 /guix/build | |
parent | 0e1c5ccc3b7ac988f69988b8adf499e89b133856 (diff) |
compile: Enable 'shadowed-toplevel' warning.
* guix/build/compile.scm (%warnings): Add 'shadowed-toplevel'.
Diffstat (limited to 'guix/build')
-rw-r--r-- | guix/build/compile.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/build/compile.scm b/guix/build/compile.scm index 794f12379c..c8fe273f7e 100644 --- a/guix/build/compile.scm +++ b/guix/build/compile.scm @@ -63,7 +63,8 @@ ;; strings" due to the fact that we use 'G_' instead of '_'. We'll need ;; help from Guile to solve this. '(unsupported-warning unbound-variable arity-mismatch - macro-use-before-definition)) ;new in 2.2 + macro-use-before-definition ;new in 2.2 + shadowed-toplevel)) ;new in 2.2.5 (define (optimization-options file) "Return the default set of optimizations options for FILE." |