* Getting rid of "source file .. newer than compiled" messages
@ 2017-01-02 12:40 Hartmut Goebel
2017-01-02 13:23 ` Danny Milosavljevic
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Hartmut Goebel @ 2017-01-02 12:40 UTC (permalink / raw)
To: guix-devel
Hi,
when developing packages, esp. when switching branches, I get lots of
messages like this:
;;; note: source file …/guix/gnu/packages/tor.scm
;;; newer than compiled …/guix/gnu/packages/tor.go
How can I get rid of these?
--
Regards
Hartmut Goebel
| Hartmut Goebel | h.goebel@crazy-compilers.com |
| www.crazy-compilers.com | compilers which you thought are impossible |
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Getting rid of "source file .. newer than compiled" messages
2017-01-02 12:40 Getting rid of "source file .. newer than compiled" messages Hartmut Goebel
@ 2017-01-02 13:23 ` Danny Milosavljevic
2017-01-02 13:28 ` Hartmut Goebel
2017-01-02 13:30 ` David Craven
2017-01-02 15:36 ` John Darrington
2 siblings, 1 reply; 7+ messages in thread
From: Danny Milosavljevic @ 2017-01-02 13:23 UTC (permalink / raw)
To: Hartmut Goebel; +Cc: guix-devel
Hi,
On Mon, 2 Jan 2017 13:40:47 +0100
Hartmut Goebel <h.goebel@crazy-compilers.com> wrote:
> Hi,
>
> when developing packages, esp. when switching branches, I get lots of
> messages like this:
>
> ;;; note: source file …/guix/gnu/packages/tor.scm
> ;;; newer than compiled …/guix/gnu/packages/tor.go
>
> How can I get rid of these?
Run make
Or am I misunderstanding what you mean?
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Getting rid of "source file .. newer than compiled" messages
2017-01-02 13:23 ` Danny Milosavljevic
@ 2017-01-02 13:28 ` Hartmut Goebel
2017-01-02 15:08 ` Ricardo Wurmus
0 siblings, 1 reply; 7+ messages in thread
From: Hartmut Goebel @ 2017-01-02 13:28 UTC (permalink / raw)
To: Danny Milosavljevic; +Cc: guix-devel
Am 02.01.2017 um 14:23 schrieb Danny Milosavljevic:
> Run make
>
> Or am I misunderstanding what you mean?
I meant without running make after each little change :-)
--
Regards
Hartmut Goebel
| Hartmut Goebel | h.goebel@crazy-compilers.com |
| www.crazy-compilers.com | compilers which you thought are impossible |
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Getting rid of "source file .. newer than compiled" messages
2017-01-02 12:40 Getting rid of "source file .. newer than compiled" messages Hartmut Goebel
2017-01-02 13:23 ` Danny Milosavljevic
@ 2017-01-02 13:30 ` David Craven
2017-01-02 15:36 ` John Darrington
2 siblings, 0 replies; 7+ messages in thread
From: David Craven @ 2017-01-02 13:30 UTC (permalink / raw)
To: Hartmut Goebel; +Cc: guix-devel
> How can I get rid of these?
By running make. It speeds up subsequent builds, so I find it a good
idea to run make when I get too many of these.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Getting rid of "source file .. newer than compiled" messages
2017-01-02 13:28 ` Hartmut Goebel
@ 2017-01-02 15:08 ` Ricardo Wurmus
2017-04-03 14:09 ` Hartmut Goebel
0 siblings, 1 reply; 7+ messages in thread
From: Ricardo Wurmus @ 2017-01-02 15:08 UTC (permalink / raw)
To: Hartmut Goebel; +Cc: guix-devel
Hartmut Goebel <h.goebel@crazy-compilers.com> writes:
> Am 02.01.2017 um 14:23 schrieb Danny Milosavljevic:
>> Run make
>>
>> Or am I misunderstanding what you mean?
>
> I meant without running make after each little change :-)
If you don’t run make Guile will interpret the changed files and that’s
quite a bit slower. It’s possible to silence these warnings, but they
are really helpful.
If you want to keep a stable branch of Guix around you can use “git
worktree”. Then you can have a worktree on master and another worktree
where your WIP branches are being edited. Editing or switching branches
in one worktree won’t affect the other worktree.
~~
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Getting rid of "source file .. newer than compiled" messages
2017-01-02 12:40 Getting rid of "source file .. newer than compiled" messages Hartmut Goebel
2017-01-02 13:23 ` Danny Milosavljevic
2017-01-02 13:30 ` David Craven
@ 2017-01-02 15:36 ` John Darrington
2 siblings, 0 replies; 7+ messages in thread
From: John Darrington @ 2017-01-02 15:36 UTC (permalink / raw)
To: Hartmut Goebel; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 719 bytes --]
On Mon, Jan 02, 2017 at 01:40:47PM +0100, Hartmut Goebel wrote:
Hi,
when developing packages, esp. when switching branches, I get lots of
messages like this:
;;; note: source file ???/guix/gnu/packages/tor.scm
;;; newer than compiled ???/guix/gnu/packages/tor.go
How can I get rid of these?
Don't switch branches. If you want to work on two branches keep two
working directories - one per branch.
J'
--
Avoid eavesdropping. Send strong encrypted email.
PGP Public key ID: 1024D/2DE827B3
fingerprint = 8797 A26D 0854 2EAB 0285 A290 8A67 719C 2DE8 27B3
See http://sks-keyservers.net or any PGP keyserver for public key.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 181 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Getting rid of "source file .. newer than compiled" messages
2017-01-02 15:08 ` Ricardo Wurmus
@ 2017-04-03 14:09 ` Hartmut Goebel
0 siblings, 0 replies; 7+ messages in thread
From: Hartmut Goebel @ 2017-04-03 14:09 UTC (permalink / raw)
To: Ricardo Wurmus; +Cc: guix-devel
Hi Ricardo,
Am 02.01.2017 um 16:08 schrieb Ricardo Wurmus:
> If you want to keep a stable branch of Guix around you can use “git
> worktree”. Then you can have a worktree on master and another worktree
> where your WIP branches are being edited. Editing or switching branches
> in one worktree won’t affect the other worktree.
I'm using this git worktree feature now since one or two weeks and this
is really great. I have several worktrees for different "projects" (like
updating KDE Frameworks).
Side-note: You tip also made me use worktrees for when generating a
github-pages-based website using sphinx: The _build/html directory is
the worktree holding the "gh-pages" branch. Works like a charm :-)
Details: https://github.com/pyinstaller/pyinstaller.github.io
--
Regards
Hartmut Goebel
| Hartmut Goebel | h.goebel@crazy-compilers.com |
| www.crazy-compilers.com | compilers which you thought are impossible |
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2017-04-03 14:09 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-02 12:40 Getting rid of "source file .. newer than compiled" messages Hartmut Goebel
2017-01-02 13:23 ` Danny Milosavljevic
2017-01-02 13:28 ` Hartmut Goebel
2017-01-02 15:08 ` Ricardo Wurmus
2017-04-03 14:09 ` Hartmut Goebel
2017-01-02 13:30 ` David Craven
2017-01-02 15:36 ` John Darrington
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.