Displaying 3 results from an estimated 3 matches for "shlib_flags".
Did you mean:
shlib_cflags
2006 Oct 17
0
[PATCH] Fixes for linking on Solaris
...k against libsocket where necessary.
Signed-off-by: John Levon <john.levon@sun.com>
diff --git a/config/Linux.mk b/config/Linux.mk
--- a/config/Linux.mk
+++ b/config/Linux.mk
@@ -20,6 +20,10 @@ INSTALL_PROG = $(INSTALL) -m0755
LIB64DIR=lib64
+SOCKET_LIBS =
+SONAME_LDFLAG = -Wl,-soname
+SHLIB_FLAGS = -shared
+
ifneq ($(debug),y)
# Optimisation flags are overridable
CFLAGS ?= -O2 -fomit-frame-pointer
diff --git a/config/SunOS.mk b/config/SunOS.mk
--- a/config/SunOS.mk
+++ b/config/SunOS.mk
@@ -20,6 +20,10 @@ INSTALL_PROG = $(INSTALL) -m0755
LIB64DIR=lib/amd64
+SOCKET_LIBS = -lsocket...
2004 Dec 21
1
64-bit R failed to compile some packages (PR#7440)
...install
a SOM library by using:
install.packages(c("som"));
from http://cran.r-project.org/src/contrib/Descriptions/som.html
I got this error message:
ld: fatal: file som.o: wrong ELF class: ELFCLASS64
I was able to fix this problem by modifying
R/etc/Makeconf and changed all SHLIB_FLAGS (with -G) to
also include -m64.
Thanks
--Vincent
2006 Oct 17
0
[PATCH] misc compile fixes for tools on Solaris
...pile fixes for tools/ on Solaris.
Signed-off-by: John Levon <john.levon@sun.com>
diff --git a/config/Linux.mk b/config/Linux.mk
--- a/config/Linux.mk
+++ b/config/Linux.mk
@@ -21,6 +21,7 @@ LIB64DIR=lib64
LIB64DIR=lib64
SOCKET_LIBS =
+CURSES_LIB = -lncurses
SONAME_LDFLAG = -Wl,-soname
SHLIB_FLAGS = -shared
diff --git a/config/SunOS.mk b/config/SunOS.mk
--- a/config/SunOS.mk
+++ b/config/SunOS.mk
@@ -22,6 +22,7 @@ LIB64DIR=lib/amd64
LIB64DIR=lib/amd64
SOCKET_LIBS = -lsocket
+CURSES_LIB = -lcurses
SONAME_LDFLAG = -Wl,-h
SHLIB_FLAGS = -static-libgcc -shared
diff --git a/tools/console...