mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 16:36:41 +07:00
selftest/mqueue: enable cross compilation
Use the CC variable instead of hard coding gcc. Also clean up the compiler options by creating a CFLAGS variable. Signed-off-by: Tyler Baker <tyler.baker@linaro.org> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
This commit is contained in:
parent
5de8304904
commit
6886f41d88
@ -1,6 +1,8 @@
|
|||||||
|
CFLAGS = -O2
|
||||||
|
|
||||||
all:
|
all:
|
||||||
gcc -O2 mq_open_tests.c -o mq_open_tests -lrt
|
$(CC) $(CFLAGS) mq_open_tests.c -o mq_open_tests -lrt
|
||||||
gcc -O2 -o mq_perf_tests mq_perf_tests.c -lrt -lpthread -lpopt
|
$(CC) $(CFLAGS) -o mq_perf_tests mq_perf_tests.c -lrt -lpthread -lpopt
|
||||||
|
|
||||||
include ../lib.mk
|
include ../lib.mk
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user