all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#25401: tcc fails to build (test failure)
@ 2017-01-08 21:59 Ricardo Wurmus
  2017-01-09  9:05 ` Ludovic Courtès
  2018-02-05 22:10 ` Andreas Enge
  0 siblings, 2 replies; 6+ messages in thread
From: Ricardo Wurmus @ 2017-01-08 21:59 UTC (permalink / raw)
  To: 25401

The package “tcc” fails to build.  The check phase fails:

--8<---------------cut here---------------start------------->8---
starting phase `check'
make -C tests test
make[1]: Entering directory '/tmp/guix-build-tcc-0.9.26.drv-0/tcc-0.9.26/tests'
------------ hello-exe ------------
../tcc -B.. ../examples/ex1.c -o hello || (../tcc -vv; exit 1) && ./hello
------------ hello-run ------------
../tcc -B.. -run ../examples/ex1.c
Hello World
gcc -o libtcc_test libtcc_test.c ../libtcc.a -I..  -Wall -g -O2 -fno-strict-aliasing -Wno-pointer-sign -Wno-sign-compare -Wno-unused-result -DCONFIG_TCC_SYSINCLUDEPATHS="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/include:/gnu/store/jc898psn5yc9s328nn8fya3sc2daf037-linux-libre-headers-4.4.18/include:{B}/include\"" -DCONFIG_TCC_LIBPATHS="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/lib\"" -DCONFIG_TCC_CRTPREFIX="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/lib\"" -DCONFIG_TCC_ELFINTERP="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/lib/ld-linux-x86-64.so.2\"" -DTCC_TARGET_X86_64 -lm -ldl  
make[1]: *** [Makefile:63: hello-exe] Segmentation fault
make[1]: *** Waiting for unfinished jobs....
make[1]: Leaving directory '/tmp/guix-build-tcc-0.9.26.drv-0/tcc-0.9.26/tests'
make: *** [Makefile:316: test] Error 2
phase `check' failed after 0.2 seconds
builder for `/gnu/store/fdy7vhwj4x7639446xai7aqh2q980xpb-tcc-0.9.26.drv' failed with exit code 1
@ build-failed /gnu/store/fdy7vhwj4x7639446xai7aqh2q980xpb-tcc-0.9.26.drv - 1 builder for `/gnu/store/fdy7vhwj4x7639446xai7aqh2q980xpb-tcc-0.9.26.drv' failed with exit code 1
guix build: error: build failed: build of `/gnu/store/fdy7vhwj4x7639446xai7aqh2q980xpb-tcc-0.9.26.drv' failed
--8<---------------cut here---------------end--------------->8---

tcc can be used as an interpreter just fine, but the binaries it
produces segfault immediately.

--8<---------------cut here---------------start------------->8---
(gdb) bt full
#0  0x00000000080482a4 in _start ()
No symbol table info available.
(gdb) disassemble
Dump of assembler code for function _start:
   0x0000000008048280 <+0>:	xor    %ebp,%ebp
   0x0000000008048282 <+2>:	mov    %rdx,%r9
   0x0000000008048285 <+5>:	pop    %rsi
   0x0000000008048286 <+6>:	mov    %rsp,%rdx
   0x0000000008048289 <+9>:	and    $0xfffffffffffffff0,%rsp
   0x000000000804828d <+13>:	push   %rax
   0x000000000804828e <+14>:	push   %rsp
   0x000000000804828f <+15>:	mov    $0x8048350,%r8
   0x0000000008048296 <+22>:	mov    $0x80482e0,%rcx
   0x000000000804829d <+29>:	mov    $0x80482ab,%rdi
=> 0x00000000080482a4 <+36>:	callq  *0x0(%rip)        # 0x80482aa <_start+42>
   0x00000000080482aa <+42>:	hlt    
End of assembler dump.
--8<---------------cut here---------------end--------------->8---


-- 
Ricardo

GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
http://elephly.net

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

* bug#25401: tcc fails to build (test failure)
  2017-01-08 21:59 bug#25401: tcc fails to build (test failure) Ricardo Wurmus
@ 2017-01-09  9:05 ` Ludovic Courtès
  2017-01-09 20:44   ` ng0
  2018-02-05 22:10 ` Andreas Enge
  1 sibling, 1 reply; 6+ messages in thread
From: Ludovic Courtès @ 2017-01-09  9:05 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: 25401

Ricardo Wurmus <rekado@elephly.net> skribis:

> The package “tcc” fails to build.  The check phase fails:
>
> starting phase `check'
> make -C tests test
> make[1]: Entering directory '/tmp/guix-build-tcc-0.9.26.drv-0/tcc-0.9.26/tests'
> ------------ hello-exe ------------
> ../tcc -B.. ../examples/ex1.c -o hello || (../tcc -vv; exit 1) && ./hello
> ------------ hello-run ------------
> ../tcc -B.. -run ../examples/ex1.c
> Hello World
> gcc -o libtcc_test libtcc_test.c ../libtcc.a -I..  -Wall -g -O2 -fno-strict-aliasing -Wno-pointer-sign -Wno-sign-compare -Wno-unused-result -DCONFIG_TCC_SYSINCLUDEPATHS="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/include:/gnu/store/jc898psn5yc9s328nn8fya3sc2daf037-linux-libre-headers-4.4.18/include:{B}/include\"" -DCONFIG_TCC_LIBPATHS="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/lib\"" -DCONFIG_TCC_CRTPREFIX="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/lib\"" -DCONFIG_TCC_ELFINTERP="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/lib/ld-linux-x86-64.so.2\"" -DTCC_TARGET_X86_64 -lm -ldl  
> make[1]: *** [Makefile:63: hello-exe] Segmentation fault

FWIW it started failing after the last ‘core-updates’ merge, which
updated Binutils and glibc, among other things.

We should check whether tinycc Git master has this problem.

Ludo’.

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

* bug#25401: tcc fails to build (test failure)
  2017-01-09  9:05 ` Ludovic Courtès
@ 2017-01-09 20:44   ` ng0
  2017-01-10  8:21     ` Ludovic Courtès
  0 siblings, 1 reply; 6+ messages in thread
From: ng0 @ 2017-01-09 20:44 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 25401

Ludovic Courtès <ludo@gnu.org> writes:

> Ricardo Wurmus <rekado@elephly.net> skribis:
>
>> The package “tcc” fails to build.  The check phase fails:
>>
>> starting phase `check'
>> make -C tests test
>> make[1]: Entering directory '/tmp/guix-build-tcc-0.9.26.drv-0/tcc-0.9.26/tests'
>> ------------ hello-exe ------------
>> ../tcc -B.. ../examples/ex1.c -o hello || (../tcc -vv; exit 1) && ./hello
>> ------------ hello-run ------------
>> ../tcc -B.. -run ../examples/ex1.c
>> Hello World
>> gcc -o libtcc_test libtcc_test.c ../libtcc.a -I..  -Wall -g -O2 -fno-strict-aliasing -Wno-pointer-sign -Wno-sign-compare -Wno-unused-result -DCONFIG_TCC_SYSINCLUDEPATHS="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/include:/gnu/store/jc898psn5yc9s328nn8fya3sc2daf037-linux-libre-headers-4.4.18/include:{B}/include\"" -DCONFIG_TCC_LIBPATHS="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/lib\"" -DCONFIG_TCC_CRTPREFIX="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/lib\"" -DCONFIG_TCC_ELFINTERP="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/lib/ld-linux-x86-64.so.2\"" -DTCC_TARGET_X86_64 -lm -ldl  
>> make[1]: *** [Makefile:63: hello-exe] Segmentation fault
>
> FWIW it started failing after the last ‘core-updates’ merge, which
> updated Binutils and glibc, among other things.
>
> We should check whether tinycc Git master has this problem.
>
> Ludo’.

I have tcc-next (git checkout) in a branch since forever, I'm
testing this now again.
I think I never made it to build completely, but this is
something which can be fixed, I try to see how much can be fixed
from my side.
-- 
♥Ⓐ  ng0 -- https://www.inventati.org/patternsinthechaos/

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

* bug#25401: tcc fails to build (test failure)
  2017-01-09 20:44   ` ng0
@ 2017-01-10  8:21     ` Ludovic Courtès
  2017-01-10  9:17       ` ng0
  0 siblings, 1 reply; 6+ messages in thread
From: Ludovic Courtès @ 2017-01-10  8:21 UTC (permalink / raw)
  To: ng0; +Cc: 25401

ng0 <ng0@libertad.pw> skribis:

> Ludovic Courtès <ludo@gnu.org> writes:
>
>> Ricardo Wurmus <rekado@elephly.net> skribis:
>>
>>> The package “tcc” fails to build.  The check phase fails:
>>>
>>> starting phase `check'
>>> make -C tests test
>>> make[1]: Entering directory '/tmp/guix-build-tcc-0.9.26.drv-0/tcc-0.9.26/tests'
>>> ------------ hello-exe ------------
>>> ../tcc -B.. ../examples/ex1.c -o hello || (../tcc -vv; exit 1) && ./hello
>>> ------------ hello-run ------------
>>> ../tcc -B.. -run ../examples/ex1.c
>>> Hello World
>>> gcc -o libtcc_test libtcc_test.c ../libtcc.a -I..  -Wall -g -O2 -fno-strict-aliasing -Wno-pointer-sign -Wno-sign-compare -Wno-unused-result -DCONFIG_TCC_SYSINCLUDEPATHS="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/include:/gnu/store/jc898psn5yc9s328nn8fya3sc2daf037-linux-libre-headers-4.4.18/include:{B}/include\"" -DCONFIG_TCC_LIBPATHS="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/lib\"" -DCONFIG_TCC_CRTPREFIX="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/lib\"" -DCONFIG_TCC_ELFINTERP="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/lib/ld-linux-x86-64.so.2\"" -DTCC_TARGET_X86_64 -lm -ldl  
>>> make[1]: *** [Makefile:63: hello-exe] Segmentation fault
>>
>> FWIW it started failing after the last ‘core-updates’ merge, which
>> updated Binutils and glibc, among other things.
>>
>> We should check whether tinycc Git master has this problem.
>>
>> Ludo’.
>
> I have tcc-next (git checkout) in a branch since forever, I'm
> testing this now again.

Neat, and it doesn’t have this problem I guess?

Could you give the URL of your repo again?

Thanks,
Ludo’.

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

* bug#25401: tcc fails to build (test failure)
  2017-01-10  8:21     ` Ludovic Courtès
@ 2017-01-10  9:17       ` ng0
  0 siblings, 0 replies; 6+ messages in thread
From: ng0 @ 2017-01-10  9:17 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 25401

Ludovic Courtès <ludo@gnu.org> writes:

> ng0 <ng0@libertad.pw> skribis:
>
>> Ludovic Courtès <ludo@gnu.org> writes:
>>
>>> Ricardo Wurmus <rekado@elephly.net> skribis:
>>>
>>>> The package “tcc” fails to build.  The check phase fails:
>>>>
>>>> starting phase `check'
>>>> make -C tests test
>>>> make[1]: Entering directory '/tmp/guix-build-tcc-0.9.26.drv-0/tcc-0.9.26/tests'
>>>> ------------ hello-exe ------------
>>>> ../tcc -B.. ../examples/ex1.c -o hello || (../tcc -vv; exit 1) && ./hello
>>>> ------------ hello-run ------------
>>>> ../tcc -B.. -run ../examples/ex1.c
>>>> Hello World
>>>> gcc -o libtcc_test libtcc_test.c ../libtcc.a -I..  -Wall -g -O2 -fno-strict-aliasing -Wno-pointer-sign -Wno-sign-compare -Wno-unused-result -DCONFIG_TCC_SYSINCLUDEPATHS="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/include:/gnu/store/jc898psn5yc9s328nn8fya3sc2daf037-linux-libre-headers-4.4.18/include:{B}/include\"" -DCONFIG_TCC_LIBPATHS="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/lib\"" -DCONFIG_TCC_CRTPREFIX="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/lib\"" -DCONFIG_TCC_ELFINTERP="\"/gnu/store/iwgi9001dmmihrjg4rqhd6pa6788prjw-glibc-2.24/lib/ld-linux-x86-64.so.2\"" -DTCC_TARGET_X86_64 -lm -ldl  
>>>> make[1]: *** [Makefile:63: hello-exe] Segmentation fault
>>>
>>> FWIW it started failing after the last ‘core-updates’ merge, which
>>> updated Binutils and glibc, among other things.
>>>
>>> We should check whether tinycc Git master has this problem.
>>>
>>> Ludo’.
>>
>> I have tcc-next (git checkout) in a branch since forever, I'm
>> testing this now again.
>
> Neat, and it doesn’t have this problem I guess?

I can neither confirm nor deny this, as I wasn't able to make it
build so far, but logical some bugs are fixed in this upstream.

> Could you give the URL of your repo again?

https://pagure.io/guix-dev/c/756043f48e685aac1259b205193b374ee589bd91

git clone https://pagure.io/guix-dev.git 
and then the branch "tinycc".

> Thanks,
> Ludo’.
>

-- 
♥Ⓐ  ng0 -- https://www.inventati.org/patternsinthechaos/

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

* bug#25401: tcc fails to build (test failure)
  2017-01-08 21:59 bug#25401: tcc fails to build (test failure) Ricardo Wurmus
  2017-01-09  9:05 ` Ludovic Courtès
@ 2018-02-05 22:10 ` Andreas Enge
  1 sibling, 0 replies; 6+ messages in thread
From: Andreas Enge @ 2018-02-05 22:10 UTC (permalink / raw)
  To: 25401-done

The new version 0.9.27 has been built on hydra, closing this bug.

Andreas

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

end of thread, other threads:[~2018-02-05 22:11 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-08 21:59 bug#25401: tcc fails to build (test failure) Ricardo Wurmus
2017-01-09  9:05 ` Ludovic Courtès
2017-01-09 20:44   ` ng0
2017-01-10  8:21     ` Ludovic Courtès
2017-01-10  9:17       ` ng0
2018-02-05 22:10 ` Andreas Enge

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.