Skip to content

Commit

Permalink
Working both tests and JIT
Browse files Browse the repository at this point in the history
  • Loading branch information
fikovnik committed Aug 27, 2024
1 parent 1bd3660 commit 30b684a
Show file tree
Hide file tree
Showing 13 changed files with 133 additions and 393 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
### C ###
.cache
.gdb_history
compile_commands.json

### IntelliJ IDEA ###
/.idea/uiDesigner.xml
2 changes: 1 addition & 1 deletion client/rsh/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ install:
$(R) CMD INSTALL .

setup:
$(BEAR) -- $(MAKE) clean install
$(BEAR) -- $(MAKE) install

test:
LD_PRELOAD=$(LLVM_LIB) ../../external/R/bin/R -f test5.R
299 changes: 0 additions & 299 deletions client/rsh/compile_commands.json

This file was deleted.

4 changes: 3 additions & 1 deletion client/rsh/src/Makevars
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ LLVM_LIBS != $(LLVM_CONFIG) --libs
PB_CPPFLAGS != pkg-config --cflags protobuf
PB_LIBS != pkg-config --libs protobuf

PKG_CPPFLAGS := $(LLVM_CPPFLAGS) $(PB_CPPFLAGS) -fexceptions -I../inst -DR_NO_REMAP -DSTRICT_R_HEADERS -DUSE_RINTERNALS
PKG_CPPFLAGS := -DR_NO_REMAP -DSTRICT_R_HEADERS -DUSE_RINTERNALS
PKG_CXXFLAGS := $(LLVM_CPPFLAGS) $(PB_CPPFLAGS) -fexceptions -I../inst -DR_NO_REMAP -DSTRICT_R_HEADERS -DUSE_RINTERNALS
PKG_CFLAGS :=
PKG_LIBS := $(LLVM_LIBS) $(PB_LIBS) -lzmq

Loading

0 comments on commit 30b684a

Please sign in to comment.