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

Linux builtinlibs fix

parent 214a8110
No related branches found
No related tags found
No related merge requests found
......@@ -53,6 +53,9 @@ $(LIB_APPL): $(C_OBJECTS) $(F_OBJECTS)
$(C_OBJECTS): | $(OBJ)
$(OBJ):
mkdir -p $(OBJ)
# On Darwin we need to create a dummy libR.dylib
ifeq ($(OS_NAME), Darwin)
LIB_RDUMMY := $(LIBDIR)/libR$(DYLIB_EXT)
......@@ -63,9 +66,6 @@ $(LIB_RDUMMY): $(OBJ)/rdummy.o
mkdir -p $(LIBDIR)
$(DYLIB_LD) $(DYLIB_LDFLAGS) -o $(LIB_RDUMMY) -current_version $(R_VERSION) -compatibility_version $(R_VERSION) $(OBJ)/rdummy.o
$(OBJ):
mkdir -p $(OBJ)
cleanlibr:
rm -f $(LIB_RDUMMY)
......
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