Displaying 20 results from an estimated 23 matches for "shlib_link".
2006 May 12
1
X11 and vfonts modules on AIX 5.2
...make check using the above config.site settings on the same AIX 5.2.
Searching the archives on R-devel for similar AIX problems, I tried a diff between the X11 makefiles for R-2.0.1 and R-2.2.1
diff ~/src/R-2.0.1/src/modules/X11/Makefile ~/src/R-2.2.1/src/modules/X11/Makefile
54c54
< $(SHLIB_LINK) -o $@ $(R_X11_la_LDFLAGS) $(R_X11_la_OBJECTS) $(R_X11_la_LIBADD) $(LIBS)
---
> $(SHLIB_LINK) -o $@ $(R_X11_la_LDFLAGS) $(R_X11_la_OBJECTS) $(R_X11_la_LIBADD)
...
Adding $(LIBS) at the end of line 54 in the R-2.2.1 X11 makefile caused the loading error above to go away, but I don't...
2008 Mar 19
1
[LLVMdev] Merge Patch File
...FUNCS)' \
APPLE_LOCAL='APPLE LOCAL libcc_kext' \
- MULTILIBS="`$(GCC_FOR_TARGET) --print-multi-lib` $
(APPLE_EXTRA_MULTI)"\
+ MULTILIBS="`$(GCC_FOR_TARGET) --print-multi-lib` $
(APPLE_EXTRA_MULTI)" \
EXTRA_MULTILIB_PARTS='$(EXTRA_MULTILIB_PARTS)' \
SHLIB_LINK='$(SHLIB_LINK)' \
SHLIB_INSTALL='$(SHLIB_INSTALL)' \
--------------
2015 May 11
1
LDFLAGS defined in R_MAKEVARS_USER file is ignored for R CMD SHLIB on Windows
Example input and output to reproduce this can be found at
https://gist.github.com/jimhester/b7f05f50794c88e44b17.
I tested this attempting to compile the [digest](
http://cran.r-project.org/web/packages/digest/index.html) package, `run.sh`
and `run.bat` were both run in the package source directory on Ubuntu 14.01
and Windows 7 respectively.
In particular while the `CFLAGS` values were properly
2001 Jul 23
2
Installing RSPython with R 1.3.0
To get RSPython installed on my debian test box, I had to make a couple
of changes not listed in
ftp://www.omegahat.org/pub/Omega/RSPython/FAQ.html
1) I had to change $R_HOME/src/modules/X11 :
$(R_X11_la): $(R_X11_la_OBJECTS) $(R_X11_la_DEPENDENCIES)
$(SHLIB_LINK) -o $@ $(R_X11_la_LDFLAGS) $(R_X11_la_OBJECTS)
$(R_X11_la_LIBADD) $(LIBS)
to
$(R_X11_la): $(R_X11_la_OBJECTS) $(R_X11_la_DEPENDENCIES)
$(SHLIB_LINK) -o $@ $(R_X11_la_LDFLAGS) $(R_X11_la_OBJECTS)
$(R_X11_la_LIBADD) $(LIBS) -L$(R_HOME)/bin -lR
2) I had the same link problem with ctest, so...
2005 Oct 17
2
libxenstat python bindings
...n-sparse
INSTALL = install
INSTALL_PROG = $(INSTALL) -m0755 -D
INSTALL_DATA = $(INSTALL) -m0644 -D
prefix=/usr/local
includedir=$(prefix)/include
libdir=$(prefix)/lib
LDCONFIG=ldconfig
MAKE_LINK=ln -sf
MAJOR=0
MINOR=0
LIB=src/libxenstat.a
SHLIB=src/libxenstat.so.$(MAJOR).$(MINOR)
SHLIB_LINKS=src/libxenstat.so.$(MAJOR) src/libxenstat.so
OBJECTS=src/xenstat.o src/xen-interface.o
SONAME_FLAGS=-Wl,-soname -Wl,libxenstat.so.$(MAJOR)
WARN_FLAGS=-Wall -Werror
CFLAGS+=-Isrc -I$(XEN_LIBXC)
LDFLAGS+=-Lsrc
all: $(LIB) $(SHLIB)
$(LIB): $(OBJECTS)
$(AR) rc $@ $^
$(RANLIB) $@
$(SHLIB): $(O...
2008 Mar 19
0
[LLVMdev] Merge Patch File
Thanks, Mike! I applied this to the tree. Török, please give it a try.
In the meantime, I'm going to try on a Linux machine I just got access
to.
-bw
On Wed, Mar 19, 2008 at 2:37 PM, Mike Stump <mrs at apple.com> wrote:
> On Mar 19, 2008, at 2:03 PM, Török Edwin wrote:
> >
> > What is kext64, and how do I disable it?
>
> Comes from:
>
>
2008 Mar 19
3
[LLVMdev] Merge Patch File
On Mar 19, 2008, at 2:03 PM, Török Edwin wrote:
>
> What is kext64, and how do I disable it?
Comes from:
APPLE_LOCAL='APPLE LOCAL libcc_kext' \
MULTILIBS="`$(GCC_FOR_TARGET) --print-multi-lib`
static;@static at fno-pic kext;@Dmal
loc=kern_os_malloc at Dfree=kern_os_free at DLIBCC_KEXT@static at fno-pic@fno-
exceptions at fno-non-ca
2006 Aug 01
0
[LLVMdev] Building llvm under cygwin
...ib
> lsf="../../src/gcc/cp/lang- specs.h"; for f in $lsf; do \
> echo "#include \"$f\""; \
> done | sed 's|../../src/gcc/||' > tmp-specs.h
> /bin/sh ../../src/gcc/../move-if-change tmp-specs.h specs.h
> echo timestamp > s-specs
> (SHLIB_LINK='' \
> SHLIB_MULTILIB=''; \
> gcc -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes
> -Wmissing-prototypes -Wold-style-definition -fno-common -Wno-error
> -DHAVE_CONFIG_H -DENABLE_LLVM -D__STDC_LIMIT_MACROS -I. -I.
> -I../../src/gcc -I../../src/gcc...
2006 Jul 31
0
[LLVMdev] Building llvm under cygwin
If you're building llvm-gcc4, you don't need the runtime libraries, so
I'd just stick with the "tools-only" build and declare success. If
you're building llvm-gcc3, I'd suggest you switch to llvm-gcc4 :)
However, the problem appears to be your PATH variable. In your path you
have the following directory: C:/Program Files/Microsoft DirectX SDK
(June
2006 Jul 30
2
[LLVMdev] Building llvm under cygwin
Hi!
I'm trying to build LLVM under cygwin.
I have the latest version of cygwin and CVS versions of llvm, llvm-test and
llvm-gcc.
make of tools only succeeded.
make of frontend succeeded too
but full make of llvm failed on crtend in llvm/runtime/GCCLibraries with the
following message:
llvm[0]: Compiling crtend.c for Debug build (bytecode)
/bin/sh: -c: line 0: syntax error near unexpected
2005 Nov 23
2
Makefiles and other customization
Writing R Extensions mentions that a package developer can provide a
Makefile, but gives very little information about what should be in it.
It says there must be a clean target, and later on there's mention of
$(SHLIB): $(OBJECTS)
$(SHLIB_LINK) -o $@ $(OBJECTS) $(ALL_LIBS)
(in the F95 discussion).
What should a Makefile provide, and what can it assume? In other words,
what variables and environment setup should have been done? My guess is
that all the R boilerplate for Makefiles will have been read before the
Makefile I provide. It a...
2006 Aug 01
15
[LLVMdev] Building llvm under cygwin
...tilib.h
echo timestamp > s-mlib
lsf="../../src/gcc/cp/lang-specs.h"; for f in $lsf; do \
echo "#include \"$f\""; \
done | sed 's|../../src/gcc/||' > tmp-specs.h
/bin/sh ../../src/gcc/../move-if-change tmp-specs.h specs.h
echo timestamp > s-specs
(SHLIB_LINK='' \
SHLIB_MULTILIB=''; \
gcc -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes
-Wmissing-prototypes -Wold-style-definition -fno-common -Wno-error
-DHAVE_CONFIG_H -DENABLE_LLVM -D__STDC_LIMIT_MACROS -I. -I.
-I../../src/gcc -I../../src/gcc/. -I../../src/gcc/../inc...
2009 Jul 23
1
problem building R 2.9.1 from source on RHEL 4 (x86_64)
I am building from source on RHEL 4 and have run into a
problem while running "make check":
running code in 'lapack.R' ...make[3]: *** [lapack.Rout] Error 1
make[3]: Leaving directory `/opt/R/R-2.9.1/tests'
make[2]: *** [test-Specific] Error 2
make[2]: Leaving directory `/opt/R/R-2.9.1/tests'
make[1]: *** [test-all-basics] Error 1
make[1]: Leaving
2007 Jul 30
0
install error for RBGL_1.12.0 on linux ---2
...s the same, but some difference in
/usr/local/lib/R/etc/Makeconf:
SHELL = /bin/sh
SHLIB_CFLAGS =
SHLIB_CXXFLAGS =
SHLIB_CXXLD = g++
SHLIB_CXXLDFLAGS = -shared
SHLIB_EXT = .so
SHLIB_FCLD = g77
SHLIB_FCLDFLAGS = -shared
SHLIB_FFLAGS =
SHLIB_LD = gcc -std=gnu99
SHLIB_LDFLAGS = -shared
SHLIB_LIBADD =
SHLIB_LINK = $(SHLIB_LD) $(SHLIB_LDFLAGS) $(LDFLAGS)
what should I do?
thanks,
xinan
2004 Aug 15
2
[LLVMdev] Re: [llvm-announce] LLVM 1.3 Release!]
...REFIX=\"/lib/gcc/\"
-DSTANDARD_LIBEXEC_PREFIX=\"/libexec/gcc/\"
-DDEFAULT_TARGET_VERSION=\"3.4-llvm
\" -DDEFAULT_TARGET_MACHINE=\"i686-pc-cygwin\"
-DSTANDARD_BINDIR_PREFIX=\"/bin/\
" -DTOOLDIR_BASE_PREFIX=\"../../../../\" `test "X${SHLIB_LINK}" = "X"
|| test "
no" != "yes" || echo "-DENABLE_SHARED_LIBGCC"` `test
"X${SHLIB_MULTILIB}" = "X"
|| echo "-DNO_SHARED_LIBGCC_MULTILIB"` \
-c ../../src/gcc/gcc.c -o gcc.o)
../../src/gcc/gcc.c:942: warning: string length `...
2006 Oct 17
0
[PATCH] Fixes for linking on Solaris
...l.a: $(LIB_OBJS)
$(AR) rc $@ $^
diff --git a/tools/xenstat/libxenstat/Makefile b/tools/xenstat/libxenstat/Makefile
--- a/tools/xenstat/libxenstat/Makefile
+++ b/tools/xenstat/libxenstat/Makefile
@@ -30,7 +30,7 @@ SHLIB=src/libxenstat.so.$(MAJOR).$(MINOR
SHLIB=src/libxenstat.so.$(MAJOR).$(MINOR)
SHLIB_LINKS=src/libxenstat.so.$(MAJOR) src/libxenstat.so
OBJECTS=src/xenstat.o
-SONAME_FLAGS=-Wl,-soname -Wl,libxenstat.so.$(MAJOR)
+SONAME_FLAGS=$(SONAME_LDFLAG) -Wl,libxenstat.so.$(MAJOR)
WARN_FLAGS=-Wall -Werror
@@ -45,7 +45,7 @@ all: $(LIB)
$(RANLIB) $@
$(SHLIB): $(OBJECTS)
- $(CC) $(CFLAGS) $(...
2011 Feb 08
1
Compiling a Tcl extension for an R package
Dear R developers,
I plan to upload a first version of my R package RnavGraph to the R CRAN
server in a week or two. However I'm still struggling with an image
resizing function written in C as a tcl extension. I did all my
development in Ubuntu, and everything works fine in Ubuntu, however my
attempts to compile this C function under Windows or OSX have all failed.
I provide a minimal self
2001 Dec 05
3
trouble with R CMD INSTALL for building my own library
...usr/local/lib -lz -lreadline -ldl -lncurses -lm
LIBPATHS = -L/usr/local/lib
LIBTOOL = $(SHELL) $(R_HOME)/bin/libtool
SHELL = /bin/sh
SHLIB_CFLAGS =
SHLIB_CXXFLAGS =
SHLIB_CXXLD = c++
SHLIB_CXXLDFLAGS = -shared
SHLIB_EXT = so
SHLIB_FFLAGS =
SHLIB_LD = gcc
SHLIB_LDFLAGS = -shared
SHLIB_LIBADD =
SHLIB_LINK = $(SHLIB_LD) $(SHLIB_LDFLAGS) $(LDFLAGS)
--
Jonathan Q. Li, PhD
Agilent Technologies Laboratory
Palo Alto, California, USA
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info&q...
2001 Dec 05
3
trouble with R CMD INSTALL for building my own library
...usr/local/lib -lz -lreadline -ldl -lncurses -lm
LIBPATHS = -L/usr/local/lib
LIBTOOL = $(SHELL) $(R_HOME)/bin/libtool
SHELL = /bin/sh
SHLIB_CFLAGS =
SHLIB_CXXFLAGS =
SHLIB_CXXLD = c++
SHLIB_CXXLDFLAGS = -shared
SHLIB_EXT = so
SHLIB_FFLAGS =
SHLIB_LD = gcc
SHLIB_LDFLAGS = -shared
SHLIB_LIBADD =
SHLIB_LINK = $(SHLIB_LD) $(SHLIB_LDFLAGS) $(LDFLAGS)
--
Jonathan Q. Li, PhD
Agilent Technologies Laboratory
Palo Alto, California, USA
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info&q...
2006 May 01
6
R-2.3.0 make error
Dear list,
When compiling the R-2.3.0 on FC4 x86_64, I got the following errors:
make[3]: Entering directory
`/project/scratch3/ligroup/wuming/src/R-2.3.0/src/main'
gcc -Wl,--export-dynamic -L/usr/local/lib64 -o R.bin Rmain.o
CConverters.o CommandLineArgs.o Rdynload.o Renviron.o RNG.o apply.o
arithmetic.o apse.o array.o attrib.o base.o bind.o builtin.o
character.o coerce.o colors.o complex.o