mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
Remove redundant -arch flags
This commit is contained in:
parent
ad11588540
commit
d13c559934
3 changed files with 4 additions and 17 deletions
|
|
@ -3,13 +3,6 @@ TESTS=$(sort $(filter-out test111, $(basename $(wildcard test*.lama))))
|
|||
|
||||
LAMAC=../src/lamac
|
||||
|
||||
UNAME_S := $(shell uname -s)
|
||||
|
||||
ifeq ($(UNAME_S),Linux)
|
||||
else ifeq ($(UNAME_S),Darwin)
|
||||
ARCH = -arch x86_64
|
||||
endif
|
||||
|
||||
.PHONY: check $(TESTS)
|
||||
|
||||
|
||||
|
|
@ -19,7 +12,7 @@ $(TESTS): %: %.lama
|
|||
@echo "regression/$@"
|
||||
@cat $@.input | LAMA=../runtime $(LAMAC) -i $< > $@.log && diff $@.log orig/$@.log
|
||||
@cat $@.input | LAMA=../runtime $(LAMAC) -ds -s $< > $@.log && diff $@.log orig/$@.log
|
||||
@LAMA=../runtime $(LAMAC) $< && cat $@.input | $(ARCH) ./$@ > $@.log && diff $@.log orig/$@.log
|
||||
@LAMA=../runtime $(LAMAC) $< && cat $@.input | ./$@ > $@.log && diff $@.log orig/$@.log
|
||||
|
||||
ctest111:
|
||||
@echo "regression/test111"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue