File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
* Unreleased *
2
2
3
3
This release:
4
- - .. .
4
+ - Significantly reduces the libpmem's stack usage .
5
5
6
6
Tue Aug 8 2023 Oksana Sałyk <oksana.salyk@intel.com>
7
7
Original file line number Diff line number Diff line change 4
4
# src/Makefile.inc -- common Makefile rules for PMDK
5
5
#
6
6
7
+ # Note: Please do not set CFLAGS before this file is included unless you do not
8
+ # want to use default CFLAGS.
9
+
7
10
TOP := $(dir $(lastword $(MAKEFILE_LIST ) ) ) ..
8
11
9
12
include $(TOP ) /src/common.inc
Original file line number Diff line number Diff line change @@ -50,8 +50,6 @@ ifeq ($(OS_DIMM),ndctl)
50
50
SOURCE +=\
51
51
region_namespace_ndctl.c\
52
52
numa_ndctl.c
53
- CFLAGS += $(LIBNDCTL_CFLAGS )
54
- LIBS += $(LIBNDCTL_LIBS )
55
53
else
56
54
SOURCE +=\
57
55
region_namespace_none.c\
@@ -68,5 +66,5 @@ include ../Makefile.inc
68
66
69
67
include $(PMEM2 ) /$(ARCH ) /flags.inc
70
68
71
- CFLAGS += -I.
72
- LIBS += -pthread
69
+ CFLAGS += -I. $( LIBNDCTL_CFLAGS )
70
+ LIBS += -pthread $( LIBNDCTL_LIBS )
You can’t perform that action at this time.
0 commit comments