Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 900485 Details for
Bug 938121
dev-lang/eisl-5.10 - main.c: error: signal_handler_child undeclared (first use in this function)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
dev-lang:eisl-5.10:20240817-191429.log
dev-lang:eisl-5.10:20240817-191429.log (text/plain), 6.52 KB, created by
Toralf Förster
on 2024-08-17 20:41:35 UTC
(
hide
)
Description:
dev-lang:eisl-5.10:20240817-191429.log
Filename:
MIME Type:
Creator:
Toralf Förster
Created:
2024-08-17 20:41:35 UTC
Size:
6.52 KB
patch
obsolete
> * Package: dev-lang/eisl-5.10:0 > * Repository: gentoo > * Maintainer: xgqt@gentoo.org > * Upstream: https://github.com/sasagawa888/eisl/issues > * USE: abi_x86_64 amd64 elibc_musl kernel_linux > * FEATURES: network-sandbox preserve-libs sandbox userpriv usersandbox > >>>> Unpacking source... >>>> Unpacking eisl-5.10.tar.gz to /var/tmp/portage/dev-lang/eisl-5.10/work >>>> Source unpacked in /var/tmp/portage/dev-lang/eisl-5.10/work >>>> Preparing source in /var/tmp/portage/dev-lang/eisl-5.10/work/eisl-5.10 ... > * Applying eisl-3.60-Makefile.patch ... > [ ok ] >>>> Source prepared. >>>> Configuring source in /var/tmp/portage/dev-lang/eisl-5.10/work/eisl-5.10 ... >>>> Source configured. >>>> Compiling source in /var/tmp/portage/dev-lang/eisl-5.10/work/eisl-5.10 ... >make -j4 CC=x86_64-pc-linux-musl-gcc clean edlis eisl >x86_64-pc-linux-musl-gcc -O2 -pipe -march=native -fno-diagnostics-color -Icii/include -g -DNCURSES_WIDECHAR -I/usr/include/ncursesw -U_XOPEN_SOURCE -Inana/src -DNDEBUG=1 -DWITHOUT_NANA=1 -std=c17 -DSHAREDIR=/usr/local/share/eisl -c function.c -o function.o >x86_64-pc-linux-musl-gcc -O2 -pipe -march=native -fno-diagnostics-color -Icii/include -g -DNCURSES_WIDECHAR -I/usr/include/ncursesw -U_XOPEN_SOURCE -Inana/src -DNDEBUG=1 -DWITHOUT_NANA=1 -std=c17 -DSHAREDIR=/usr/local/share/eisl -c main.c -o main.o >x86_64-pc-linux-musl-gcc -O2 -pipe -march=native -fno-diagnostics-color -Icii/include -g -DNCURSES_WIDECHAR -I/usr/include/ncursesw -U_XOPEN_SOURCE -Inana/src -DNDEBUG=1 -DWITHOUT_NANA=1 -std=c17 -DSHAREDIR=/usr/local/share/eisl -c link.c -o link.o >x86_64-pc-linux-musl-gcc -O2 -pipe -march=native -fno-diagnostics-color -Icii/include -g -DNCURSES_WIDECHAR -I/usr/include/ncursesw -U_XOPEN_SOURCE -Inana/src -DNDEBUG=1 -DWITHOUT_NANA=1 -std=c17 -DSHAREDIR=/usr/local/share/eisl -c bignum.c -o bignum.o >In file included from main.c:45: >eisl.h:1431:36: error: unknown type name 'siginfo_t' > 1431 | void signal_handler_child(int sig, siginfo_t *siginfo, void *context); > | ^~~~~~~~~ >main.c: In function 'main': >main.c:356:36: error: invalid application of 'sizeof' to incomplete type 'struct sigaction' > 356 | memset(&child_action, 0, sizeof(child_action)); > | ^ >main.c:357:17: error: invalid use of undefined type 'struct sigaction' > 357 | child_action.sa_sigaction = &signal_handler_child; > | ^ >main.c:357:34: error: 'signal_handler_child' undeclared (first use in this function); did you mean 'signal_handler_c'? > 357 | child_action.sa_sigaction = &signal_handler_child; > | ^~~~~~~~~~~~~~~~~~~~ > | signal_handler_c >main.c:357:34: note: each undeclared identifier is reported only once for each function it appears in >main.c:358:17: error: invalid use of undefined type 'struct sigaction' > 358 | child_action.sa_flags = SA_SIGINFO; > | ^ >main.c:358:29: error: 'SA_SIGINFO' undeclared (first use in this function) > 358 | child_action.sa_flags = SA_SIGINFO; > | ^~~~~~~~~~ >In file included from function.c:15: >eisl.h:1431:36: error: unknown type name 'siginfo_t' > 1431 | void signal_handler_child(int sig, siginfo_t *siginfo, void *context); > | ^~~~~~~~~ >main.c:360:5: error: implicit declaration of function 'sigaction' [-Wimplicit-function-declaration] > 360 | sigaction(SIGRTMIN, &child_action, NULL); > | ^~~~~~~~~ >function.c: In function 'init_subr': >function.c:32:33: error: 'M_PI' undeclared (first use in this function) > 32 | bind_const("*PI*", make_flt(M_PI)); > | ^~~~ >function.c:32:33: note: each undeclared identifier is reported only once for each function it appears in >main.c:360:15: error: 'SIGRTMIN' undeclared (first use in this function); did you mean 'SIGTTIN'? > 360 | sigaction(SIGRTMIN, &child_action, NULL); > | ^~~~~~~~ > | SIGTTIN >In file included from bignum.c:51: >eisl.h:1431:36: error: unknown type name 'siginfo_t' > 1431 | void signal_handler_child(int sig, siginfo_t *siginfo, void *context); > | ^~~~~~~~~ >main.c:364:9: error: implicit declaration of function 'setenv'; did you mean 'getenv'? [-Wimplicit-function-declaration] > 364 | if (setenv("EASY_ISLISP", STRQUOTE(SHAREDIR), /* overwrite = */ 0) == > | ^~~~~~ > | getenv >In file included from link.c:15: >eisl.h:1431:36: error: unknown type name 'siginfo_t' > 1431 | void signal_handler_child(int sig, siginfo_t *siginfo, void *context); > | ^~~~~~~~~ >main.c:470:30: error: storage size of 'value' isn't known > 470 | union sigval value; > | ^~~~~ >main.c:473:17: error: implicit declaration of function 'sigqueue' [-Wimplicit-function-declaration] > 473 | sigqueue(getppid(), SIGRTMIN, value); > | ^~~~~~~~ >main.c: At top level: >main.c:581:36: error: unknown type name 'siginfo_t' > 581 | void signal_handler_child(int sig, siginfo_t * siginfo, void *context) > | ^~~~~~~~~ >main.c:249:18: error: storage size of 'child_action' isn't known > 249 | struct sigaction child_action; > | ^~~~~~~~~~~~ >make: *** [makefile:140: link.o] Error 1 shuffle=2071073009 >make: *** Waiting for unfinished jobs.... >function.c: In function 'load': >function.c:2261:14: error: 'PATH_MAX' undeclared (first use in this function); did you mean 'AF_MAX'? > 2261 | char str[PATH_MAX]; > | ^~~~~~~~ > | AF_MAX >make: *** [makefile:140: bignum.o] Error 1 shuffle=2071073009 >make: *** [makefile:140: main.o] Error 1 shuffle=2071073009 >make: *** [makefile:140: function.o] Error 1 shuffle=2071073009 > * ERROR: dev-lang/eisl-5.10::gentoo failed (compile phase): > * emake failed > * > * If you need support, post the output of `emerge --info '=dev-lang/eisl-5.10::gentoo'`, > * the complete build log and the output of `emerge -pqv '=dev-lang/eisl-5.10::gentoo'`. > * The complete build log is located at '/var/log/portage/dev-lang:eisl-5.10:20240817-191429.log'. > * For convenience, a symlink to the build log is located at '/var/tmp/portage/dev-lang/eisl-5.10/temp/build.log'. > * The ebuild environment file is located at '/var/tmp/portage/dev-lang/eisl-5.10/temp/environment'. > * Working directory: '/var/tmp/portage/dev-lang/eisl-5.10/work/eisl-5.10' > * S: '/var/tmp/portage/dev-lang/eisl-5.10/work/eisl-5.10' >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 938121
:
900484
| 900485 |
900486
|
900487
|
900488
|
900489
|
900490
|
900491
|
900492