bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug #63044] Make fails to update .LOADED when the setup routine returns


From: Dmitry Goncharov
Subject: [bug #63044] Make fails to update .LOADED when the setup routine returns -1.
Date: Sat, 10 Sep 2022 21:48:52 -0400 (EDT)

Follow-up Comment #1, bug #63044 (project make):

Make fails to add a loaded shared object to .LOADED when the shared object
setup routine returns -1.



++++
$ ls
makefile  timer2.c
$ cat timer2.c 
int plugin_is_GPL_compatible;

int
timer2_gmk_setup (void)
{
  return -1;
}
$ gcc -o timer2.so -shared -fPIC timer2.c
$ cat makefile
load timer2.so
$(info .loaded = $(.LOADED))
all:; $(info .loaded = $(.LOADED))
$ make-4.3
.loaded = 
.loaded = 
make-4.3: 'all' is up to date.
----


    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?63044>

_______________________________________________
Message sent via Savannah
https://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]