Displaying 3 results from an estimated 3 matches for "altprojects".
2000 Sep 04
2
problems with R COMPILE in make
Dear R helpers
I have a problem with R COMPILE. While the Makefile consisting of the lines
SOURCES = imageio.c procbase.c readargs.c regSegs.c goodiesPH.c \
generalAnalysis.c edgeAggregation.c utilities.alga.c \
cs.parametrizing.c
tst.so: $(SOURCES)
R SHLIB -o $@ $(SOURCES)
works fine, the Makefile with the target replaced by
imageio.o: imageio.c
R COMPILE imageio.c
results in
2000 Sep 04
2
problems with R COMPILE in make
Dear R helpers
I have a problem with R COMPILE. While the Makefile consisting of the lines
SOURCES = imageio.c procbase.c readargs.c regSegs.c goodiesPH.c \
generalAnalysis.c edgeAggregation.c utilities.alga.c \
cs.parametrizing.c
tst.so: $(SOURCES)
R SHLIB -o $@ $(SOURCES)
works fine, the Makefile with the target replaced by
imageio.o: imageio.c
R COMPILE imageio.c
results in
2001 Mar 26
1
Problems with R CMD COMPILE within Makefile (PR#885)
...e loop.
>>
>> Here is quick fix to your problem. Add the line
>>
>> include $(R_HOME)/etc/Makeconf
>>
>> to your Makefile. Then, make will compile imageio.o with the correct flags.
>>
>> eyore[RCompile-174]>make
>> gcc -I/home2/FlowData/AltProjects/R-shared//include -I/usr/local/include -mieee-fp -D__NO_MATH_INLINES -fPIC -g -O2 -c imageio.c -o imageio.o
>>
>>
>> That should be enough to get things working. The more detailed
>> explanation is as follows.
>>
>> a) The rule
>> imageio.o: imageio...