unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
* Reduce (use-module... to minimally required set
@ 2022-02-17  8:12 Mortimer Cladwell
  2022-02-28  1:47 ` Maxim Cournoyer
  0 siblings, 1 reply; 2+ messages in thread
From: Mortimer Cladwell @ 2022-02-17  8:12 UTC (permalink / raw)
  To: help-guix

Hi,
I have taken the Artanis packaging recipe from guile-xyz.scm and modified
it to suit my needs.  For the (use-module... section I simply copied all
the modules required by guile-xyz.scm.  I suspect Artanis requires a much
smaller subset. Is there a way to report modules actually used so I can
reduce the (use-module... statement to the bare minimum?
Thanks
Mortimer

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Reduce (use-module... to minimally required set
  2022-02-17  8:12 Reduce (use-module... to minimally required set Mortimer Cladwell
@ 2022-02-28  1:47 ` Maxim Cournoyer
  0 siblings, 0 replies; 2+ messages in thread
From: Maxim Cournoyer @ 2022-02-28  1:47 UTC (permalink / raw)
  To: Mortimer Cladwell; +Cc: help-guix

Hello Mortimer,

Mortimer Cladwell <mbcladwell@gmail.com> writes:

> Hi,
> I have taken the Artanis packaging recipe from guile-xyz.scm and modified
> it to suit my needs.  For the (use-module... section I simply copied all
> the modules required by guile-xyz.scm.  I suspect Artanis requires a much
> smaller subset. Is there a way to report modules actually used so I can
> reduce the (use-module... statement to the bare minimum?

There are some warnings you can get via 'guild compile'; e.g.:

--8<---------------cut here---------------start------------->8---
$ guild compile -Whelp
The available warning types are:

  `unsupported-warning'  warn about unknown warning types
  `unused-variable'      report unused variables
  `unused-toplevel'      report unused local top-level variables
  `shadowed-toplevel'    report shadowed top-level variables
  `unbound-variable'     report possibly unbound variables
  `macro-use-before-definition' report possibly mis-use of macros before they are defined
  `use-before-definition' report uses of top-levels before they are defined
  `non-idempotent-definition' report names that can refer to imports on first load, but module definitions on second load
  `arity-mismatch'       report procedure arity mismatches (wrong number of arguments)
  `duplicate-case-datum' report a duplicate datum in a case expression
  `bad-case-datum'       report a case datum that cannot be meaningfully compared using `eqv?'
  `format'               report wrong number of arguments to `format'
--8<---------------cut here---------------end--------------->8---
  
'unused-toplevel' is close but seems limited to variables, which modules
aren't apparently.  It'd be a very useful thing to add, indeed!

Maxim


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-02-28  1:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-17  8:12 Reduce (use-module... to minimally required set Mortimer Cladwell
2022-02-28  1:47 ` Maxim Cournoyer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).