Displaying 7 results from an estimated 7 matches for "libr_ldflags".
2003 Nov 30
2
R as OS X Framework
...versions are installed).
The second issue is a rather minor one which will be solved if RAqua
uses the framework. If you used --enable-aqua then configure overrides
the dylib location, which is bad for our framework:
configure.ac @ 1050:
if test "x${want_aqua}" = xyes; then
LIBR_LDFLAGS="-dynamiclib -install_name
/Applications/StartR.app/RAqua.app/Contents/Frameworks/libR.dylib"
else
LIBR_LDFLAGS="-dynamiclib -install_name
\$(Rexeclibdir)/libR.dylib"
fi
You'll need to remove the aqua part of it, otherwise the libR.dylib is
not expected i...
2002 May 09
1
Fixed: embedded R resolving wrong symbols
...o use '-Bsymbolic' proved to be (almost) the solution. I
tried that and it didn't work because I'm using gcc instead of Sun's
compilers. It took me a bit of time to discoed that gcc uses '-symbolic'
rather than '-Bsymbolic'.
Once I figured that out, changing
LIBR_LDFLAGS = -shared
to
LIBR_LDFLAGS = -symbolic -shared
in Makeconf resolves the problem, albeit generating a long list of undefined
reference warnings during the link.
-Greg
> -----Original Message-----
> From: Duncan Temple Lang [mailto:duncan@research.bell-labs.com]
> Sent: Wednesday, May 08,...
2003 Dec 22
2
R-devel with Darwin: some issues (mostly due to latest R.framework changes)
...ter) and tries to install the framework anyway in / which fails
just after the R itself was copied into /Versions/.... I know, the user
is to blame, but still, a simple check and stop (perhaps with a hint to
use --enable-R-framework) would be nice.
2) Wrong -install_name:
configure.ac@1094: LIBR_LDFLAGS="-dynamiclib -install_name
${R_FRAMEWORK_DIR}/R.framework/Versions/${PACKAGE_VERSION}/Resources/
bin/libR.dylib -compatibility_version ${PACKAGE_VERSION}
-current_version ${PACKAGE_VERSION}"
R_FRAMEWORK_DIR specifies the full path including the framework name,
at least according...
2002 Oct 23
0
R-1.6.1 with gcc-3.3
...probably only interesting to zero or one or two persons.
gcc-3.3 from Apple's CVS does not handle the -bundle flag properly.
I had to hack configure.ac, which now has
shlib_ldflags="-nostdlib /usr/lib/bundle1.o -Wl,-bundle
-Wl,-bundle_loader,/usr/local/lib/R/bin/R.bin -lgcc" ;;
LIBR_LDFLAGS="-dynamiclib -install_name \$(Rexeclibdir)/libR.dylib
-framework Carbon"
i.e. I have also switched over to two-level namespaces. If the
-bundle flag is fixed, the first one will simply become
shlib_ldflags="-bundle -bundle_loader /usr/local/lib/R/bin/R.bin"
For those of you...
2009 Feb 21
1
Install failure (PR#13545)
...BRARY_PATH=''
JAVA_LIBS0=''
LAPACK_LDFLAGS=''
LAPACK_LIBS=''
LATEX='false'
LD=''
LDFLAGS='-L/usr/local/lib64'
LIBICONV=''
LIBINTL=''
LIBM=''
LIBMULTITHREAD=''
LIBOBJS=''
LIBPTH=''
LIBR=''
LIBR_LDFLAGS=''
LIBS=''
LIBTHREAD=''
LIBTOOL=''
LIBTOOL_DEPS=''
LIBnn='lib64'
LN_S='ln -s'
LTLIBICONV=''
LTLIBINTL=''
LTLIBMULTITHREAD=''
LTLIBOBJS=''
LTLIBPTH=''
LTLIBTHREAD=''
MAINTAINER_MODE_FALSE='...
2005 Feb 05
2
Problems compiling (configure) R on Ubuntu linux (debian)
...L}'
INSTALL_SCRIPT='${INSTALL}'
JAVAC=''
LAPACK_LDFLAGS=''
LAPACK_LIBS=''
LATEX='false'
LDFLAGS='-L/usr/local/lib'
LIBGLADE_CFLAGS=''
LIBGLADE_CONFIG=''
LIBGLADE_LIBS=''
LIBM='-lm'
LIBOBJS=''
LIBR=''
LIBR_LDFLAGS=''
LIBS='-ldl -lm '
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIBTOOL_DEPS='tools/ltmain.sh'
LN_S='ln -s'
LTLIBOBJS=''
MAINTAINER_MODE_FALSE=''
MAINTAINER_MODE_TRUE='#'
MAIN_CFLAGS=''
MAIN_FFLAGS=''
MAIN_LD=''...
2003 Mar 29
1
compling errors for sun unix (PR#2702)
...#39;
INSTALL_SCRIPT='${INSTALL}'
JAVAC='/usr/bin/javac'
LATEX='/usr/local/IT/bin/latex'
LDFLAGS='-L/usr/local/lib'
LIBGLADE_CFLAGS=''
LIBGLADE_CONFIG=''
LIBGLADE_LIBS=''
LIBM='-lm'
LIBOBJS=''
LIBR=''
LIBR_EXT=''
LIBR_LDFLAGS=''
LIBS='-lreadline -ldl -lncurses -lm '
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIBTOOL_DEPS='tools/ltmain.sh'
LN_S='ln -s'
LTALLOCA=''
LTLIBOBJS=''
MAINTAINER_MODE_FALSE=''
MAINTAINER_MODE_TRUE='#'
MAIN_CFLAGS=''
M...