8000 fix: add missing `-D` prefixes when building on 32-bit architectures · wincent/command-t@6c8e2a3 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Commit 6c8e2a3

Browse files
committed
fix: add missing -D prefixes when building on 32-bit architectures
As reported here: - #399 (comment)
1 parent 842f62e commit 6c8e2a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/wincent/commandt/lib/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ ifeq ($(LBITS),64)
1313
CCFLAGS += -DMMAP_SLAB_SIZE_CONF=137438953472
1414
else
1515
# 32 M candidates.
16-
CCFLAGS += MAX_FILES_CONF=33554432
16+
CCFLAGS += -DMAX_FILES_CONF=33554432
1717
# 32 GB.
18-
CCFLAGS += MMAP_SLAB_SIZE_CONF=34359738368
18+
CCFLAGS += -DMMAP_SLAB_SIZE_CONF=34359738368
1919
endif
2020

2121
ifdef DEBUG

0 commit comments

Comments
 (0)
0