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
a3e9b9da
Commit
a3e9b9da
authored
8 years ago
by
Mick Jordan
Browse files
Options
Downloads
Patches
Plain Diff
native build: avoid generally unnecessary work
parent
ad2538aa
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+4
-1
4 additions, 1 deletion
.gitignore
com.oracle.truffle.r.native/fficall/Makefile
+18
-11
18 additions, 11 deletions
com.oracle.truffle.r.native/fficall/Makefile
com.oracle.truffle.r.native/gnur/Makefile.libs
+9
-4
9 additions, 4 deletions
com.oracle.truffle.r.native/gnur/Makefile.libs
with
31 additions
and
16 deletions
.gitignore
+
4
−
1
View file @
a3e9b9da
...
@@ -20,10 +20,14 @@
...
@@ -20,10 +20,14 @@
/com.oracle.truffle.r.native/gnur/Makeconf.done
/com.oracle.truffle.r.native/gnur/Makeconf.done
/com.oracle.truffle.r.native/gnur/platform.mk.temp*
/com.oracle.truffle.r.native/gnur/platform.mk.temp*
/com.oracle.truffle.r.native/gnur/R-*
/com.oracle.truffle.r.native/gnur/R-*
/com.oracle.truffle.r.native/gnur/rcopylib.done
/com.oracle.truffle.r.native/run/Makeconf.etc
/com.oracle.truffle.r.native/run/Makeconf.etc
/com.oracle.truffle.r.native/include/*.h
/com.oracle.truffle.r.native/include/*.h
/com.oracle.truffle.r.native/include/R_ext/*.h
/com.oracle.truffle.r.native/include/R_ext/*.h
/com.oracle.truffle.r.native/include/linked
/com.oracle.truffle.r.native/include/linked
/com.oracle.truffle.r.native/fficall/jni.done
/com.oracle.truffle.r.native/fficall/jniboot.done
/com.oracle.truffle.r.test.native/packages/copy_recommended
/com.oracle.truffle.r.test.native/packages/copy_recommended
/com.oracle.truffle.r.test.native/packages/recommended
/com.oracle.truffle.r.test.native/packages/recommended
/com.oracle.truffle.r.test.native/packages/*/lib/*
/com.oracle.truffle.r.test.native/packages/*/lib/*
...
@@ -123,4 +127,3 @@ test_fastr
...
@@ -123,4 +127,3 @@ test_fastr
lib.install.cran*
lib.install.cran*
package.blacklist
package.blacklist
com.oracle.truffle.r.test.native/embedded/lib
com.oracle.truffle.r.test.native/embedded/lib
This diff is collapsed.
Click to expand it.
com.oracle.truffle.r.native/fficall/Makefile
+
18
−
11
View file @
a3e9b9da
...
@@ -31,12 +31,12 @@ $(error no platform.mk available)
...
@@ -31,12 +31,12 @@ $(error no platform.mk available)
endif
endif
endif
endif
.PHONY
:
all clean
objs
.PHONY
:
all clean
R_LIBNAME
:=
libR
$(
DYLIB_EXT
)
R_LIBNAME
:=
libR
$(
DYLIB_EXT
)
R_LIB
:=
$(
FASTR_LIB_DIR
)
/
$(
R_LIBNAME
)
R_LIB
:=
$(
FASTR_LIB_DIR
)
/
$(
R_LIBNAME
)
BOOT
JNI
_LIBNAME
:=
libjniboot
$(
DYLIB_EXT
)
JNI
BOOT_LIBNAME
:=
libjniboot
$(
DYLIB_EXT
)
BOOT
JNI
_LIB
:=
$(
FASTR_LIB_DIR
)
/
$(
BOOT
JNI
_LIBNAME
)
JNI
BOOT_LIB
:=
$(
FASTR_LIB_DIR
)
/
$(
JNI
BOOT_LIBNAME
)
ifeq
($(OS_NAME), Darwin)
ifeq
($(OS_NAME), Darwin)
VERSION_FLAGS
:=
-current_version
$(
R_VERSION
)
-compatibility_version
$(
R_VERSION
)
VERSION_FLAGS
:=
-current_version
$(
R_VERSION
)
-compatibility_version
$(
R_VERSION
)
...
@@ -45,9 +45,13 @@ endif
...
@@ -45,9 +45,13 @@ endif
BLAS_TARGET
:=
$(
FASTR_LIB_DIR
)
/libRblas
$(
DYLIB_EXT
)
BLAS_TARGET
:=
$(
FASTR_LIB_DIR
)
/libRblas
$(
DYLIB_EXT
)
LAPACK_TARGET
:=
$(
FASTR_LIB_DIR
)
/libRlapack
$(
DYLIB_EXT
)
LAPACK_TARGET
:=
$(
FASTR_LIB_DIR
)
/libRlapack
$(
DYLIB_EXT
)
all
:
$(R_LIB) $(BOOT
JNI
_LIB)
all
:
$(R_LIB) $(
JNI
BOOT_LIB)
$(R_LIB)
:
objs
# use sentinels to avoid (usually unnecessary) rebuilds.
# N.B. if things change in the subdirs, a clean must be invoked
# to remove the sentinels
$(R_LIB)
:
jni.done
ifeq
($(OS_NAME),Darwin)
ifeq
($(OS_NAME),Darwin)
$(
DYLIB_LD
)
$(
DYLIB_LDFLAGS
)
-Wl
,-rpath,@loader_path/
-o
$(
R_LIB
)
$(
wildcard lib/
*
.o
)
-L
$(
FASTR_LIB_DIR
)
-lRblas
-lRlapack
-lpcre
-lz
$(
VERSION_FLAGS
)
$(
DYLIB_LD
)
$(
DYLIB_LDFLAGS
)
-Wl
,-rpath,@loader_path/
-o
$(
R_LIB
)
$(
wildcard lib/
*
.o
)
-L
$(
FASTR_LIB_DIR
)
-lRblas
-lRlapack
-lpcre
-lz
$(
VERSION_FLAGS
)
install_name_tool
-change
libRblas.dylib @rpath/libRblas.dylib
$(
R_LIB
)
install_name_tool
-change
libRblas.dylib @rpath/libRblas.dylib
$(
R_LIB
)
...
@@ -59,22 +63,25 @@ else
...
@@ -59,22 +63,25 @@ else
$(DYLIB_LD)
$(DYLIB_LDFLAGS)
-Wl,-rpath,
'$$ORIGIN'
-o
$(R_LIB)
$(
wildcard
lib/
*
.o
)
-L$(FASTR_LIB_DIR)
-lRblas
-lRlapack
-lpcre
-lz
$(DYLIB_LD)
$(DYLIB_LDFLAGS)
-Wl,-rpath,
'$$ORIGIN'
-o
$(R_LIB)
$(
wildcard
lib/
*
.o
)
-L$(FASTR_LIB_DIR)
-lRblas
-lRlapack
-lpcre
-lz
endif
endif
objs
:
jni.done
:
$(
MAKE
)
-C
src/common all
$(
MAKE
)
-C
src/common all
$(
MAKE
)
-C
src/jni all
$(
MAKE
)
-C
src/jni all
touch
jni.done
$(BOOT
JNI
_LIB)
:
boot
objs
$(
JNI
BOOT_LIB)
:
jni
boot
.done
$(
DYLIB_LD
)
$(
DYLIB_LDFLAGS
)
-o
$(
BOOT
JNI
_LIB
)
src/jniboot/jniboot.o
$(
VERSION_FLAGS
)
$(
DYLIB_LD
)
$(
DYLIB_LDFLAGS
)
-o
$(
JNI
BOOT_LIB
)
src/jniboot/jniboot.o
$(
VERSION_FLAGS
)
ifeq
($(OS_NAME),Darwin)
ifeq
($(OS_NAME),Darwin)
install_name_tool
-id
@rpath/libjniboot.dylib
$(
BOOT
JNI
_LIB
)
install_name_tool
-id
@rpath/libjniboot.dylib
$(
JNI
BOOT_LIB
)
endif
endif
boot
objs
:
jni
boot
.done
:
$(
MAKE
)
-C
src/jniboot all
$(
MAKE
)
-C
src/jniboot all
touch
jniboot.done
clean
:
clean
:
$(
MAKE
)
-C
src/common clean
$(
MAKE
)
-C
src/common clean
$(
MAKE
)
-C
src/jni clean
$(
MAKE
)
-C
src/jni clean
rm
-rf
$(
R_LIB
)
rm
-rf
$(
R_LIB
)
rm
-rf
$(
BOOTJNI_LIB
)
rm
-rf
$(
JNIBOOT_LIB
)
rm
-rf
jni.done jniboot.done
This diff is collapsed.
Click to expand it.
com.oracle.truffle.r.native/gnur/Makefile.libs
+
9
−
4
View file @
a3e9b9da
...
@@ -38,9 +38,9 @@ LAPACK_TARGET := $(FASTR_LIB_DIR)/libRlapack$(DYLIB_EXT)
...
@@ -38,9 +38,9 @@ LAPACK_TARGET := $(FASTR_LIB_DIR)/libRlapack$(DYLIB_EXT)
# they were found in the standard system locations
# they were found in the standard system locations
OTHER_LIB_TARGETS
=
pcre z gfortran quadmath gcc_s
OTHER_LIB_TARGETS
=
pcre z gfortran quadmath gcc_s
.PHONY
:
all
other_lib_targets
.PHONY
:
all
all
:
$(FASTR_LIB_DIR) $(BLAS_TARGET) $(LAPACK_TARGET)
other_lib_targets
all
:
$(FASTR_LIB_DIR) $(BLAS_TARGET) $(LAPACK_TARGET)
rcopylib.done
$(FASTR_LIB_DIR)
:
$(FASTR_LIB_DIR)
:
mkdir
-p
$(
FASTR_LIB_DIR
)
mkdir
-p
$(
FASTR_LIB_DIR
)
...
@@ -60,12 +60,17 @@ ifeq ($(OS_NAME),Darwin)
...
@@ -60,12 +60,17 @@ ifeq ($(OS_NAME),Darwin)
install_name_tool
-id
@rpath/libRlapack.dylib
$(LAPACK_TARGET)
install_name_tool
-id
@rpath/libRlapack.dylib
$(LAPACK_TARGET)
endif
endif
other_lib_targets
:
# we can't create exact dependencies since we don't know exactly
# what versions of the lubs (if any) will be copied, so we use a sentinel
# file to indicate that the check has been done.
rcopylib.done
:
for
target
in
$(
OTHER_LIB_TARGETS
);
do
\
for
target
in
$(
OTHER_LIB_TARGETS
);
do
\
mx rcopylib
$$
target
$(
FASTR_LIB_DIR
)
||
exit
1
;
\
mx rcopylib
$$
target
$(
FASTR_LIB_DIR
)
||
exit
1
;
\
done
done
touch
rcopylib.done
clean
:
clean
:
rm
-f
$(
BLAS_TARGET
)
$(
LAPACK_TARGET
)
rm
-f
$(
BLAS_TARGET
)
$(
LAPACK_TARGET
)
rm
-f
$(
foreach target,
$(
OTHER_LIB_TARGETS
)
,
$(
wildcard
$(
FASTR_LIB_DIR
)
/lib
$(
target
)
.
*
))
rm
-f
$(
foreach target,
$(
OTHER_LIB_TARGETS
)
,
$(
wildcard
$(
FASTR_LIB_DIR
)
/lib
$(
target
)
.
*
))
rm
-f
rcopylib.done
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