[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: ‘core-updates’ is back!
From: |
Marius Bakke |
Subject: |
Re: ‘core-updates’ is back! |
Date: |
Thu, 31 Aug 2017 19:18:54 +0200 |
User-agent: |
Notmuch/0.25 (https://notmuchmail.org) Emacs/25.2.1 (x86_64-unknown-linux-gnu) |
Marius Bakke <address@hidden> writes:
> Ludovic Courtès <address@hidden> writes:
>
>> Marius Bakke <address@hidden> skribis:
>>
>>> Efraim Flashner <address@hidden> writes:
>>>
>>>> On Wed, Aug 30, 2017 at 09:10:42PM +0200, Marius Bakke wrote:
>>>>> Since we're on the topic, I would like to switch to GCC 6 or 7 soon...
>>>>> Are we agile enough to use the very latest GCC by default yet? :-)
>>>>
>>>> That would be nice to at least move to GCC 6. My aarch64 board is
>>>> currently idle, I can see how well it works on my machine.
>>>
>>> The main issue with GCC 6 is that we need to port the SOURCE_DATE_EPOCH
>>> patches again. But we might want to do that even if switching to 7.
>>
>> I think we should upgrade. My preference would be GCC 6, which I think
>> may trigger fewer build failures than GCC 7, but maybe GCC 7 would be
>> fine.
>>
>> Are you sure the SOURCE_DATE_EPOCH thing isn’t already in GCC 6?
>
> I just checked out the gcc-6_4_0-release tag and ran `git grep
> SOURCE_DATE_EPOCH`. No results :/
>
> However I tried cherry-picking the two commits and there was only one
> trivial conflict in gcc/c-family/c-common.h (apart from ChangeLog
> updates, which were omitted). Patch attached and building!
It works!
$ cat sde.c
#include <stdio.h>
int main()
{
printf( "__DATE__ says: %s \n", __DATE__ );
printf( "__TIME__ says: %s \n", __TIME__ );
return 0;
}
$ ./pre-inst-env guix environment --pure --ad-hoc address@hidden binutils glibc
bash: tty: command not found
[env]$ gcc sde.c && ./a.out
__DATE__ says: Aug 31 2017
__TIME__ says: 17:09:07
[env]$ SOURCE_DATE_EPOCH=1 gcc sde.c && ./a.out
__DATE__ says: Jan 1 1970
__TIME__ says: 00:00:01
[env]$ SOURCE_DATE_EPOCH=-1 gcc sde.c && ./a.out
sde.c: In function 'main':
sde.c:4:5: error: environment variable SOURCE_DATE_EPOCH must expand to a
non-negative integer less than or equal to 253402300799
printf( "__DATE__ says: %s \n", __DATE__ );
^~~~~~
\o/
signature.asc
Description: PGP signature
- ‘core-updates’ is back!, Ludovic Courtès, 2017/08/28
- Re: ‘core-updates’ is back!, Efraim Flashner, 2017/08/29
- Re: ‘core-updates’ is back!, Efraim Flashner, 2017/08/30
- Re: ‘core-updates’ is back!, Marius Bakke, 2017/08/30
- Re: ‘core-updates’ is back!, Efraim Flashner, 2017/08/30
- Re: ‘core-updates’ is back!, Marius Bakke, 2017/08/30
- Re: ‘core-updates’ is back!, Ludovic Courtès, 2017/08/31
- Re: ‘core-updates’ is back!, Marius Bakke, 2017/08/31
- Re: ‘core-updates’ is back!,
Marius Bakke <=
- Re: ‘core-updates’ is back!, Ricardo Wurmus, 2017/08/30
- Re: ‘core-updates’ is back!, Marius Bakke, 2017/08/30
Re: ‘core-updates’ is back!, Andy Wingo, 2017/08/29