Skip to content

Commit

Permalink
ELITE_ROOT -> ACTORA_ROOT
Browse files Browse the repository at this point in the history
  • Loading branch information
mn416 committed Nov 18, 2019
1 parent 59a4d62 commit e387a07
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions benchmarks/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ CRUNS = $(patsubst %, run-c-%, $(BENCHMARKS))
ACTS = $(patsubst %, %.act, $(BENCHMARKS))
ACTRUNS = $(patsubst %, run-act-%, $(BENCHMARKS))
TIME = time -f "\ttime: %U"
ELITE = $(ELITE_ROOT)/compiler/elite
ACTEMU = $(ELITE_ROOT)/emulator/actemu
ELITE = $(ACTORA_ROOT)/compiler/elite
ACTEMU = $(ACTORA_ROOT)/emulator/actemu

.PHONY: all
all: $(CS) $(REDS)
Expand All @@ -17,10 +17,10 @@ run-c: $(CRUNS)
run-act: $(ACTRUNS)

$(ELITE):
make -C $(ELITE_ROOT)/compiler
make -C $(ACTORA_ROOT)/compiler

$(REDEMU):
make -C $(ELITE_ROOT)/emulator
make -C $(ACTORA_ROOT)/emulator

%.act: %.erl $(ELITE)
$(ELITE) -b $< > $@
Expand Down
2 changes: 1 addition & 1 deletion blarney
2 changes: 1 addition & 1 deletion compiler/Module.hs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ loadModule prefix modName = do
-- Module search paths
searchPaths :: IO [String]
searchPaths = do
libDir <- lookupEnv "ELITE_ROOT"
libDir <- lookupEnv "ACTORA_ROOT"
return ([prefix] ++ [dir ++ "/lib" | Just dir <- [libDir]])

-- Determine module location
Expand Down
2 changes: 1 addition & 1 deletion rtl/Config.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@
print("#define " + var + " " + str(p[var]))
elif mode == "cpp":
for var in p:
print("#define Red" + var + " " + str(p[var]))
print("#define Act" + var + " " + str(p[var]))
2 changes: 1 addition & 1 deletion rtl/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
BLARNEY_ROOT = $(ELITE_ROOT)/blarney
BLARNEY_ROOT = $(ACTORA_ROOT)/blarney
BLC = $(BLARNEY_ROOT)/Scripts/blc

.PHONEY: all
Expand Down

0 comments on commit e387a07

Please sign in to comment.