Skip to content

Commit 11fc9e0

Browse files
committed
detect i386 rather than sparc (as at least we can test that)
1 parent 8200383 commit 11fc9e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Makevars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ endif
5050
# For Solaris detect if this is 32-bit R on x86 and if so forward that to TBB
5151
ifeq ($(USE_TBB), SunOS)
5252
SUNOS_ARCH = $(shell uname -p)
53-
ifneq ($(SUNOS_ARCH), sparc)
53+
ifeq ($(SUNOS_ARCH), i386)
5454
R_32BIT = $(shell ${R_HOME}/bin/Rscript -e 'cat(.Machine$$sizeof.pointer == 4)')
5555
ifeq ($(R_32BIT), TRUE)
5656
MAKE_ARGS += arch=ia32

0 commit comments

Comments
 (0)