Skip to content

Commit 779715f

Browse files
committed
Add support for large files
1 parent b7a6219 commit 779715f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ PREFIX ?= /usr/local
44
CXX ?= g++
55
CXXFLAGS ?= -g
66

7-
CXXFLAGS += -I../include -Wall -Wextra -pedantic -Wredundant-decls -Wdisabled-optimization -Wctor-dtor-privacy -Wnon-virtual-dtor -Woverloaded-virtual -Wsign-promo -Wno-long-long
7+
CXXFLAGS += -I../include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -Wall -Wextra -pedantic -Wredundant-decls -Wdisabled-optimization -Wctor-dtor-privacy -Wnon-virtual-dtor -Woverloaded-virtual -Wsign-promo -Wno-long-long
88
LDFLAGS += -L../src -pthread -lz -lprotobuf-lite -losmpbf
99

1010
.PHONY: clean install

0 commit comments

Comments
 (0)