From: Olivier Dion via General Guile related discussions <guile-user@gnu.org>
To: Maxime Devos <maximedevos@telenet.be>,
Christine Lemmer-Webber <cwebber@dustycloud.org>,
guile-user@gnu.org
Subject: Re: Newbie thoughts on Guile Hall + Guix
Date: Sun, 06 Feb 2022 18:00:44 -0500 [thread overview]
Message-ID: <871r0f7g83.fsf@laura> (raw)
In-Reply-To: <2b524db8e0d851b4cb4519d9c82dca1585ade66f.camel@telenet.be>
On Sun, 06 Feb 2022, Maxime Devos <maximedevos@telenet.be> wrote:
> Olivier Dion schreef op zo 06-02-2022 om 17:05 [-0500]:
>> > Is it restricted to Makefiles, or can it also be used without
>> > generating Makefiles? If not, things like progress bars should be
>> > easy
>> > to implement and file names containing spaces or ‘special
>> > characters’
>> > can be used without any problems.
>>
>> Since it's glued to my project, and since I'm very familiar with
>> Makefiles, it only support Makefiles for now. What would be the
>> other
>> targets you have in mind?
>
> I was thinking of something like
>
> $ cd ~/the-source-code
> # (I haven't looked much yet, possibly the CLI needs to be very
> different)
> $ cbuild make --target=aarch64-linux-gnu --prefix=/foo/bar
> $ cbuild install --staged-install=/blah
I'm not a fan of configuration with CLI like `--prefix`. I like to have
a configuration file that is configurable like so:
.config.scm:
-----------------------
'((TARGET . aarch64)
(PREFIX . /foor/bar))
-----------------------
> Basically, don't delegate to 'make' or 'ninja' or whatever, just build
> it.
I agree. In the end `make` is only there for tracking dependencies,
which can be done easily in Guile I guess. Although, there might be
performance problems at large scale, but I don't think I'm there yet ;-)
> That's way less portable than 'make' of course, but people that don't
> have 'cbuild' or don't want to learn 'cbuild' can still use the
> Makefile.
Across distros or OS? For other distros, if the only requirements are
Guile and pkg-config then I would say that's quite portabled. As for
other OS, I personnaly don't care about them.
> I noted that you are using #nil in some places.
> #nil (an amalgation of #false and the empty list ()) is mostly an
> implementation detail for Emacs Lisp support, and not something that
> needs to be used in pure Guile. I would use '() instead; it's
> also more portable to other Schemes.
I did not know that '() was more portable! I did find out that #nil has
some problem during syntaxes expansion though. I will change this in my
style!
> There's also some potential reproducibility problems: in
> https://gitlab.com/oldiob/cbuild/-/blob/master/config.scm#L19,
> D1CACHE_LINE_SIZE is set based on the cache size where it was
> compiled, instead of the cache size where it is supposed to run on.
This is true. Fortunately, on a good amount of architectures, L1 cache
is 64 bytes. The only way I can see to fix this is to override the
configuration in `.config.scm` if compiling for another system. It's
not possible to do this at runtime, because I use it for some struct
alignments of static variables.
--
Olivier Dion
Polymtl
next prev parent reply other threads:[~2022-02-06 23:00 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-05 20:01 Newbie thoughts on Guile Hall + Guix Christine Lemmer-Webber
2022-02-05 22:15 ` Mikael Djurfeldt
2022-02-05 23:19 ` Jose Antonio Ortega Ruiz
2022-02-06 14:09 ` Ricardo Wurmus
2022-02-06 0:40 ` Christine Lemmer-Webber
2022-02-06 4:54 ` Aleix Conchillo Flaqué
2022-02-06 13:14 ` Mikael Djurfeldt
2022-02-06 14:03 ` Ricardo Wurmus
2022-02-06 14:28 ` Vijay Marupudi
2022-02-06 14:53 ` Ognen Duzlevski
2022-02-06 15:13 ` Maxime Devos
2022-02-06 15:29 ` Vijay Marupudi
2022-02-06 21:34 ` Zelphir Kaltstahl
2022-02-07 2:11 ` David Pirotte
2022-02-07 2:47 ` David Pirotte
2022-02-07 19:21 ` Zelphir Kaltstahl
2022-02-07 22:35 ` adriano
2022-02-05 22:16 ` Vivien
2022-02-06 2:53 ` Zelphir Kaltstahl
2022-02-06 16:35 ` Olivier Dion via General Guile related discussions
2022-02-06 16:44 ` Vivien Kraus
2022-02-06 22:10 ` Olivier Dion via General Guile related discussions
2022-02-06 16:55 ` Maxime Devos
2022-02-06 22:05 ` Olivier Dion via General Guile related discussions
2022-02-06 22:32 ` Maxime Devos
2022-02-06 23:00 ` Olivier Dion via General Guile related discussions [this message]
2022-02-06 21:37 ` Zelphir Kaltstahl
2022-02-06 22:12 ` Olivier Dion via General Guile related discussions
-- strict thread matches above, loose matches on Subject: below --
2022-02-06 13:40 dsmich
2022-02-08 12:19 Blake Shaw
2022-02-08 19:46 ` Chris Vine
2022-02-09 6:28 ` Catonano
2022-02-08 16:13 Blake Shaw
2022-02-09 3:23 Blake Shaw
2022-02-09 10:30 Blake Shaw
2022-02-09 14:13 ` Olivier Dion via General Guile related discussions
2022-02-09 20:05 ` Aleix Conchillo Flaqué
2022-02-09 20:28 ` Maxime Devos
2022-02-09 21:13 ` Aleix Conchillo Flaqué
2022-02-10 18:03 ` Vivien
2022-02-10 12:42 Blake Shaw
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/guile/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=871r0f7g83.fsf@laura \
--to=guile-user@gnu.org \
--cc=cwebber@dustycloud.org \
--cc=maximedevos@telenet.be \
--cc=olivier.dion@polymtl.ca \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).