Displaying 4 results from an estimated 4 matches for "eyor".
Did you mean:
yor
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
2003 Dec 01
0
No subject
...o days. Then it stopped and I have
spent two weeks trying to figure out what is wrong. I keep getting
"The network is busy" message from the PC side. My system passes
test 1 to 7 and fails at 8. I'd appreciate any clues
or what I should be looking at.
Test 8:
C:\WINDOWS>net view \\eyore
Error 54: The network is currently busy processing other requests or is
out
of resources. Try again later, or verify your network configuration to
be
sure that enough network resources are specified.
What does this mean, any suggestions what I should be trying? I have two
pc's connected and...
2001 Mar 26
1
Problems with R CMD COMPILE within Makefile (PR#885)
...error didn't arise,
>> you would have an infinite 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 f...