From: Jan Viktorin Date: Fri, 17 Jun 2016 12:52:47 +0000 (+0200) Subject: app/test: fix resource creation with objcopy on FreeBSD X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=1e9e0a6270c8ab1c81008927e8577e6a0629965f;p=dpdk.git app/test: fix resource creation with objcopy on FreeBSD Using of the /dev/stdin generates a warning when compiling on FreeBSD: objcopy: Warning: '/dev/stdin' is not an ordinary file app/test/Makefile:78: recipe for target 'test_resource_c.res.o' failed # ls -l /dev/stdin lrwxr-xr-x 1 root wheel 4 Jun 17 12:24 /dev/stdin -> fd/0 Replace /dev/stdin by a temporary file. Reported-by: Thomas Monjalon Signed-off-by: Jan Viktorin Tested-by: Thomas Monjalon --- diff --git a/app/test/Makefile b/app/test/Makefile index 5e3ebdccdc..36ff089ffe 100644 --- a/app/test/Makefile +++ b/app/test/Makefile @@ -43,13 +43,14 @@ define linked_resource SRCS-y += $(1).res.o $(1).res.o: $(2) @ echo ' MKRES $$@' + $Q ln -fs $$< resource.tmp $Q $(OBJCOPY) -I binary -B $(RTE_OBJCOPY_ARCH) -O $(RTE_OBJCOPY_TARGET) \ --rename-section \ .data=.rodata,alloc,load,data,contents,readonly \ - --redefine-sym _binary__dev_stdin_start=beg_$(1) \ - --redefine-sym _binary__dev_stdin_end=end_$(1) \ - --redefine-sym _binary__dev_stdin_size=siz_$(1) \ - /dev/stdin $$@ < $$< + --redefine-sym _binary_resource_tmp_start=beg_$(1) \ + --redefine-sym _binary_resource_tmp_end=end_$(1) \ + --redefine-sym _binary_resource_tmp_size=siz_$(1) \ + resource.tmp $$@ && rm -f resource.tmp endef ifeq ($(CONFIG_RTE_APP_TEST_RESOURCE_TAR),y)