Displaying 5 results from an estimated 5 matches for "dynloadext".
2000 Dec 07
1
Compiling R for MacOS X / shared libraries
...with this:
cc -I. -I../../src/include -I../../src/include -I../../src/include/R_ext -I/usr/local/include -DHAVE_CONFIG_H -g -O2 -c platform.c -o platform.o
platform.c:38: parse error before `.'
make[3]: *** [platform.o] Error 1
after I changed in 'platform.c' the line:
static char *R_DynLoadExt = DYNLOADEXT;
to
static char *R_DynLoadExt = "";/*DYNLOADEXT;*/
the make process got a little bit further until:
cc -o ../../bin/R.bin apply.o arithmetic.o array.o attrib.o bind.o builtin.o character.o coerce.o colors.o complex.o context.o cov.o cum.o debug.o devPS.o devPicTeX.o depar...
2000 Sep 28
2
Re: [R] Nothing can be pasted...
...like
>
> In file included from tabulate.c:24:
> ../../src/include/config.h:192:21: warning: nothing can be pasted after
> this token
>
> which I didn't see with RH6.2. However, R seems to run just fine
> nevertheless. The offending line in config.h is
>
> #define DYNLOADEXT "." ## SHLIBEXT
>
> I'm not too familiar with C programming, but if ## SHLIBEXT
> is meant as a comment, shouldn't it be surrounded by /* */?
A bit more on this. I understood from PD's recent post that RH7.0 uses
gcc 2.96, even though that is not yet released acc...
2000 Sep 28
1
Nothing can be pasted...
...like
>
> In file included from tabulate.c:24:
> ../../src/include/config.h:192:21: warning: nothing can be pasted after
> this token
>
> which I didn't see with RH6.2. However, R seems to run just fine
> nevertheless. The offending line in config.h is
>
> #define DYNLOADEXT "." ## SHLIBEXT
>
> I'm not too familiar with C programming, but if ## SHLIBEXT
> is meant as a comment, shouldn't it be surrounded by /* */?
That's not a comment, but is string concatenation in ISO Standard C.
--
Brian D. Ripley, ripley at sta...
2000 Dec 21
1
RH7.0 compilation
Hi everyone,
Like most people with RH7.0 Linux, I had problems with their "experimental"
gcc-2.96 compiler. To circumvent the problem, I installed stock gcc-2.95.2
in the /usr/local tree, so it will be picked up first as /usr/local/bin if
before /usr/bin on my PATH. With this setup I was able to compile R-1.2.0
straight out of the box (as well as compile Linux kernels). One problem I
2000 Dec 21
1
RH7.0 compilation
Hi everyone,
Like most people with RH7.0 Linux, I had problems with their "experimental"
gcc-2.96 compiler. To circumvent the problem, I installed stock gcc-2.95.2
in the /usr/local tree, so it will be picked up first as /usr/local/bin if
before /usr/bin on my PATH. With this setup I was able to compile R-1.2.0
straight out of the box (as well as compile Linux kernels). One problem I