Merge pull request #40080 from semunlee:fix_mmap_allocation

PiperOrigin-RevId: 314557967
This commit is contained in:
TensorFlower Gardener 2020-06-03 10:39:24 -07:00
commit 0836e5e4ea
1 changed files with 2 additions and 2 deletions

View File

@ -177,9 +177,9 @@ ifeq ($(BUILD_TYPE),windows)
BUILD_WITH_MMAP=false
endif
ifeq ($(BUILD_WITH_MMAP),true)
CORE_CC_EXCLUDE_SRCS += tensorflow/lite/mmap_allocation.cc
else
CORE_CC_EXCLUDE_SRCS += tensorflow/lite/mmap_allocation_disabled.cc
else
CORE_CC_EXCLUDE_SRCS += tensorflow/lite/mmap_allocation.cc
endif
BUILD_WITH_RUY ?= false