mirror of
https://git.freebsd.org/ports.git
synced 2025-07-01 01:20:31 -04:00
On some amd64 CPUs, this change broke py-scipy during configure,
and octave at runtime. In the end, octave kills the package
builders.
This reverts commit c45681ef50
.
Approved by: portmgr (antoine)
PR: 273219
MFH: 2023Q4
11 lines
406 B
Text
11 lines
406 B
Text
--- exports/Makefile.orig 2019-08-11 21:23:27 UTC
|
|
+++ exports/Makefile
|
|
@@ -184,7 +184,7 @@ else
|
|
endif
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -shared -o ../$(LIBSONAME) \
|
|
-Wl,--whole-archive $< -Wl,--no-whole-archive \
|
|
- $(FEXTRALIB) $(EXTRALIB)
|
|
+ -Wl,-soname,$(LIBSONAME) $(FEXTRALIB) $(EXTRALIB)
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -w -o linktest linktest.c ../$(LIBSONAME) $(FEXTRALIB) && echo OK.
|
|
rm -f linktest
|
|
|