Re: Segment fault at exit when compiled with Clang and libc++
LdBeth <[email protected]> Sat, 10 Feb 2024 02:55:49 -0600
| Newsgroups | gmane.comp.gnu.gnucap.bugs |
|---|---|
| Message-ID | <[email protected]> |
>>>>> In <[email protected]> >>>>> Felix Salfelder <[email protected]> wrote: > Is this gnucap or gnucap-modelgen-verilog? > (How) did you run configure? > cheers > felix It is gnucap, in develop branch The cause seems is the toplevel Makefile looks like install: (cd conf; ${MAKE} install) (cd include; ${MAKE} install) (cd lib; ${MAKE} install) (cd modelgen; ${MAKE} install) (cd main; ${MAKE} install) (cd apps; ${MAKE} install) but GNU Make 3.81 install on macOS seems does not like the parenthesis, and just says: $ make install make: `install' is up to date. Removing the parenthesis makes the build work again. --- ldbeth