075aeddf01
upgrade to 1.4.4 OBS-URL: https://build.opensuse.org/request/show/125358 OBS-URL: https://build.opensuse.org/package/show/Kernel:kdump/makedumpfile?expand=0&rev=56
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
---
|
|
Makefile | 8 ++++----
|
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -8,10 +8,10 @@ ifeq ($(strip $CC),)
|
|
CC = gcc
|
|
endif
|
|
|
|
-CFLAGS = -g -O2 -Wall -D_FILE_OFFSET_BITS=64 \
|
|
+CFLAGS = $(COPTFLAGS) -g -O2 -Wall -D_FILE_OFFSET_BITS=64 \
|
|
-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE \
|
|
-DVERSION='"$(VERSION)"' -DRELEASE_DATE='"$(DATE)"'
|
|
-CFLAGS_ARCH = -g -O2 -Wall -D_FILE_OFFSET_BITS=64 \
|
|
+CFLAGS_ARCH = $(COPTFLAGS) -g -O2 -Wall -D_FILE_OFFSET_BITS=64 \
|
|
-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
|
|
# LDFLAGS = -L/usr/local/lib -I/usr/local/include
|
|
|
|
@@ -45,9 +45,9 @@ OBJ_PART = print_info.o dwarf_info.o elf
|
|
SRC_ARCH = arch/arm.c arch/x86.c arch/x86_64.c arch/ia64.c arch/ppc64.c arch/s390x.c arch/ppc.c
|
|
OBJ_ARCH = arch/arm.o arch/x86.o arch/x86_64.o arch/ia64.o arch/ppc64.o arch/s390x.o arch/ppc.o
|
|
|
|
-LIBS = -ldw -lbz2 -lebl -ldl -lelf -lz
|
|
+LIBS = -ldw -lebl -lelf $(LIBS_STATIC) -Wl,-Bdynamic -ldl -lz $(LIBS_DYNAMIC)
|
|
ifneq ($(LINKTYPE), dynamic)
|
|
-LIBS := -static $(LIBS)
|
|
+LIBS := -Wl,-Bstatic $(LIBS)
|
|
endif
|
|
|
|
ifeq ($(USELZO), on)
|