mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2026-04-20 04:30:21 +02:00
Currently fails with: io_uring-bench.o: In function `main': /home/axboe/git/linux-block/tools/io_uring/io_uring-bench.c:560: undefined reference to `pthread_create' /home/axboe/git/linux-block/tools/io_uring/io_uring-bench.c:588: undefined reference to `pthread_join' collect2: error: ld returned 1 exit status Makefile:11: recipe for target 'io_uring-bench' failed make: *** [io_uring-bench] Error 1 Move -lpthread to the end. Signed-off-by: Jens Axboe <axboe@kernel.dk>
382 B
382 B
SPDX-License-Identifier: GPL-2.0
Makefile for io_uring test tools
CFLAGS += -Wall -Wextra -g -D_GNU_SOURCE LDLIBS += -lpthread
all: io_uring-cp io_uring-bench %: %.c $(CC) $(CFLAGS) -o $@ $^
io_uring-bench: syscall.o io_uring-bench.o $(CC) $(CFLAGS) -o $@ $^ $(LDLIBS)
io_uring-cp: setup.o syscall.o queue.o
clean: $(RM) io_uring-cp io_uring-bench *.o
.PHONY: all clean