Displaying 20 results from an estimated 23 matches for "shlib_links".
Did you mean:
shlib_link
2006 May 12
1
X11 and vfonts modules on AIX 5.2
I am trying to get R-2.2.1 to pass make check on an AIX 5.2 at work (I know R-2.2.1 is not the latest release, but I encountered make errors in my attempts to install either R-2.3.0 or the R-patched_2006-05-10 on the version of AIX I am on. I will post those errors in a separate posting from this.)
So far, configure and make finish without error for R-2.2.1 using gnu make, gcc-4.1.0, and
2008 Mar 19
1
[LLVMdev] Merge Patch File
On Mar 19, 2008, at 2:55 PM, Bill Wendling wrote:
> Thanks, Mike! I applied this to the tree.
No, you applied something else to the tree! :-) I had a space before
the \ and after the ". The below should fix it.
Doing diffs in .:
--- ./Makefile.in.~1~ 2008-03-19 15:45:54.000000000 -0700
+++ ./Makefile.in 2008-03-19 16:30:07.000000000 -0700
@@ -1689,7 +1689,7 @@ libgcc.mk:
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)
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): $(OB...
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
On Tue, 2006-08-01 at 15:48 +0400, Anton Vayvod wrote:
> 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 :)
>
> I switched to
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,
2006 Aug 01
15
[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 :)
I switched to llvm-gcc4 but when I run make from obj folder i run into
folowing errors:
Can't find a library with no dependencies at
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
Hi, Li and all lists,
More, I have searched the web, and found one solution as described in:
https://stat.ethz.ch/pipermail/bioc-devel/2007-June/001168.html
But, My condition is some how different:
1) my g++ version is: g++ (GCC) 3.2.2 20030222 (Red Hat Linux 3.2.2-5)
2) the SHLIB file is the same, but some difference in
/usr/local/lib/R/etc/Makeconf:
SHELL = /bin/sh
SHLIB_CFLAGS =
2004 Aug 15
2
[LLVMdev] Re: [llvm-announce] LLVM 1.3 Release!]
Chris Lattner wrote:
> LLVM Compiler Infrastructure -- Release 1.3
> http://llvm.cs.uiuc.edu
>
>We are pleased to announce the release of version 1.3 of the LLVM
>Compiler Infrastructure.
>
>
>
Great news, thanks.
However, I wonder if someone supplies pre-built cfrontend binaries for
cygwin?
I followed the instructions and tried to
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) $(L...
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
Hi,
I have built a library that consists of a piece of C code and some R
functions.
To build it into a library that I can load using library() command, I
have followed "Writing R Extensions"
and made sub-directories such as mylib/R and mylib/src. But when I run R
CMD INSTALL mylib, nothing seems to
be happening with src directory, i.e., no C compiling. I have probably
missed
some key
2001 Dec 05
3
trouble with R CMD INSTALL for building my own library
Hi,
I have built a library that consists of a piece of C code and some R
functions.
To build it into a library that I can load using library() command, I
have followed "Writing R Extensions"
and made sub-directories such as mylib/R and mylib/src. But when I run R
CMD INSTALL mylib, nothing seems to
be happening with src directory, i.e., no C compiling. I have probably
missed
some key
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