Test "mcexec additional options (h, m, n, O, stack-premap)" on arm64
Change-Id: I85d5deb0433cc1208e4b6837dcc6d6dc2a7b7b52
This commit is contained in:
committed by
Masamichi Takagi
parent
dc1f96fee3
commit
00395d68d4
28
test/mcexec_options/arm64/Makefile
Normal file
28
test/mcexec_options/arm64/Makefile
Normal file
@@ -0,0 +1,28 @@
|
||||
# Makefile COPYRIGHT FUJITSU LIMITED 2018
|
||||
CC = gcc
|
||||
TARGET = extend_heap node_bind allow_oversubscribe stack_premap
|
||||
LDFLAGS =
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
extend_heap: extend_heap.c
|
||||
$(CC) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
node_bind: node_bind.c
|
||||
$(CC) -o $@ $^ $(LDFLAGS) -lnuma
|
||||
|
||||
allow_oversubscribe: allow_oversubscribe.c
|
||||
$(CC) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
stack_premap: stack_premap.c
|
||||
$(CC) -o $@ $^ $(LDFLAGS)
|
||||
|
||||
test: all
|
||||
./run_extend_heap.sh
|
||||
./run_node_bind.sh
|
||||
./run_nr_partitions.sh
|
||||
./run_allow_oversubscribe.sh
|
||||
./run_stack_premap.sh
|
||||
|
||||
clean:
|
||||
rm -f $(TARGET)
|
||||
Reference in New Issue
Block a user