Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QueryR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Lopez
QueryR
Commits
f6cd9d20
Commit
f6cd9d20
authored
9 years ago
by
Stefan Anzinger
Browse files
Options
Downloads
Patches
Plain Diff
Make buildable on SPARC/Solaris
parent
b13b5e22
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
com.oracle.truffle.r.native/gnur/Makefile.gnur
+14
-7
14 additions, 7 deletions
com.oracle.truffle.r.native/gnur/Makefile.gnur
com.oracle.truffle.r.native/gnur/edMakeconf
+2
-2
2 additions, 2 deletions
com.oracle.truffle.r.native/gnur/edMakeconf
with
16 additions
and
9 deletions
com.oracle.truffle.r.native/gnur/Makefile.gnur
+
14
−
7
View file @
f6cd9d20
...
...
@@ -67,15 +67,18 @@ ifeq ($(OSNAME), SunOS)
# Currently we only support gcc and x64 (gcc assumed to be on the PATH)
#
OS_ARCH
:=
$(
shell
uname
-p
)
ifneq
($(OS_ARCH), i386)
$(
error
Solaris/SPARC not supported
)
endif
ICONV
:=
libiconv-1.14
$(
shell
mkdir
-p
iconv_install
)
ICONV_INSTALL
:=
$(
abspath iconv_install
)
$(info
ICONV_INSTALL
=
$(
ICONV_INSTALL
)
)
ICONV_FLAGS
:=
"-L
$(
ICONV_INSTALL
)
/lib -I
$(
ICONV_INSTALL
)
/include"
ICONV_CONFIG_FLAGS
:=
CFLAGS
=
$(
ICONV_FLAGS
)
CPPFLAGS
=
$(
ICONV_FLAGS
)
LDFLAGS
=
$(
ICONV_FLAGS
)
ICONV_FLAGS
:=
"-m64 -xcode=pic32 -L
$(
ICONV_INSTALL
)
/lib -I
$(
ICONV_INSTALL
)
/include"
ifeq
($(OS_ARCH), sparc)
ICONV_CONFIG_FLAGS
:=
CC
=
cc
CXX
=
CC
F77
=
sunf95
FFLAGS
=
$(
ICONV_FLAGS
)
CFLAGS
=
$(
ICONV_FLAGS
)
CPPFLAGS
=
$(
ICONV_FLAGS
)
LDFLAGS
=
$(
ICONV_FLAGS
)
DYLIB_LDFLAGS
=
$(
ICONV_FLAGS
)
SOLARISSTUDIO_HOME
:=
$(
shell which cc |
sed
s/bin
\\
/
*
cc//g
)
else
ICONV_CONFIG_FLAGS
:=
FFLAGS
=
$(
ICONV_FLAGS
)
CFLAGS
=
$(
ICONV_FLAGS
)
CPPFLAGS
=
$(
ICONV_FLAGS
)
LDFLAGS
=
$(
ICONV_FLAGS
)
endif
iconv
:
$(ICONV) iconv_config iconv_build
...
...
@@ -90,7 +93,7 @@ $(ICONV)/Makefile:
iconv_build
:
$(ICONV)/lib/libcharset.so
$(ICONV)/lib/libcharset.so
:
(
cd
$(
ICONV
);
$(
MAKE
)
&&
$(
MAKE
)
install
>
iconv_make.log 2>&1
)
(
cd
$(
ICONV
);
$(
MAKE
)
MAKE
=
$(
MAKE
)
&&
$(
MAKE
)
MAKE
=
$(
MAKE
)
install
>
iconv_make.log 2>&1
)
else
iconv
:
endif
...
...
@@ -108,13 +111,17 @@ config_update:
endif
$(GNUR_HOME)/Makefile
:
ifeq
($(OS_ARCH), sparc)
# required for Solaris compiler >=12.2, see Appendix C of R installation guide: http://cran.r-project.org/doc/manuals/r-release/R-admin.html#Solaris
(echo
'FLIBS="-R$(SOLARISSTUDIO_HOME)prod/lib/sparc/64 -lifai -lsunimath -lfai -lfai2 -lfsumai -lfprodai -lfminlai -lfmaxlai -lfminvai -lfmaxvai -lfui -lsunmath -lmtsk $(SOLARISSTUDIO_HOME)prod/lib/sparc/64/libfsu.so.1"'
>>
$(GNUR_HOME)/config.site)
endif
(cd
$(GNUR_HOME);
./configure
--with-x
=
no
--without-recommended-packages
$(
ICONV_CONFIG_FLAGS
)
>
gnur_configure.log 2>&1
)
build
:
$(GNUR_HOME)/bin/R
$(GNUR_HOME)/bin/R
:
$(GNUR_HOME)/Makeconf
(
cd
$(
GNUR_HOME
);
$(
MAKE
)
>
gnur_make.log 2>&1
)
(
cd
$(
GNUR_HOME
);
$(
MAKE
)
-j
>
gnur_make.log 2>&1
)
clean
:
cleangnur cleaniconv
rm
-f
Makeconf.done
...
...
This diff is collapsed.
Click to expand it.
com.oracle.truffle.r.native/gnur/edMakeconf
+
2
−
2
View file @
f6cd9d20
/^CFLAGS/s/$/ -f
pic
/
/^FFLAGS/s/$/ -f
pic
/
/^CFLAGS/s/$/ -f
PIC
/
/^FFLAGS/s/$/ -f
PIC
/
w
q
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment