Skip to content
Snippets Groups Projects
Commit a3e9b9da authored by Mick Jordan's avatar Mick Jordan
Browse files

native build: avoid generally unnecessary work

parent ad2538aa
No related branches found
No related tags found
No related merge requests found
...@@ -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
...@@ -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)
BOOTJNI_LIBNAME := libjniboot$(DYLIB_EXT) JNIBOOT_LIBNAME := libjniboot$(DYLIB_EXT)
BOOTJNI_LIB := $(FASTR_LIB_DIR)/$(BOOTJNI_LIBNAME) JNIBOOT_LIB := $(FASTR_LIB_DIR)/$(JNIBOOT_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) $(BOOTJNI_LIB) all: $(R_LIB) $(JNIBOOT_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
$(BOOTJNI_LIB): bootobjs $(JNIBOOT_LIB): jniboot.done
$(DYLIB_LD) $(DYLIB_LDFLAGS) -o $(BOOTJNI_LIB) src/jniboot/jniboot.o $(VERSION_FLAGS) $(DYLIB_LD) $(DYLIB_LDFLAGS) -o $(JNIBOOT_LIB) src/jniboot/jniboot.o $(VERSION_FLAGS)
ifeq ($(OS_NAME),Darwin) ifeq ($(OS_NAME),Darwin)
install_name_tool -id @rpath/libjniboot.dylib $(BOOTJNI_LIB) install_name_tool -id @rpath/libjniboot.dylib $(JNIBOOT_LIB)
endif endif
bootobjs: jniboot.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
...@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment