forked from facebookincubator/velox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
133 lines (104 loc) · 4.46 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# Copyright (c) Facebook, Inc. and its affiliates.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
.PHONY: all cmake build clean debug release unit
BUILD_BASE_DIR=_build
BUILD_DIR=release
BUILD_TYPE=Release
BENCHMARKS_DIR=$(BUILD_BASE_DIR)/$(BUILD_DIR)/velox/benchmarks
TREAT_WARNINGS_AS_ERRORS ?= 1
ENABLE_WALL ?= 1
# Option to make a minimal build. By default set to "OFF"; set to
# "ON" to only build a minimal set of components. This may override
# other build options
VELOX_BUILD_MINIMAL ?= "OFF"
# Control whether to build unit tests. By default set to "ON"; set to
# "OFF" to disable.
VELOX_BUILD_TESTING ?= "ON"
CMAKE_FLAGS := -DTREAT_WARNINGS_AS_ERRORS=${TREAT_WARNINGS_AS_ERRORS}
CMAKE_FLAGS += -DENABLE_ALL_WARNINGS=${ENABLE_WALL}
CMAKE_FLAGS += -DVELOX_BUILD_MINIMAL=${VELOX_BUILD_MINIMAL}
CMAKE_FLAGS += -DVELOX_BUILD_TESTING=${VELOX_BUILD_TESTING}
CMAKE_FLAGS += -DCMAKE_BUILD_TYPE=$(BUILD_TYPE)
ifdef AWSSDK_ROOT_DIR
CMAKE_FLAGS += -DAWSSDK_ROOT_DIR=$(AWSSDK_ROOT_DIR)
endif
# Use Ninja if available. If Ninja is used, pass through parallelism control flags.
USE_NINJA ?= 1
ifeq ($(USE_NINJA), 1)
ifneq ($(shell which ninja), )
GENERATOR=-GNinja -DMAX_LINK_JOBS=$(MAX_LINK_JOBS) -DMAX_HIGH_MEM_JOBS=$(MAX_HIGH_MEM_JOBS)
endif
endif
ifndef USE_CCACHE
ifneq ($(shell which ccache), )
USE_CCACHE=-DCMAKE_CXX_COMPILER_LAUNCHER=ccache
endif
endif
NUM_THREADS ?= $(shell getconf _NPROCESSORS_CONF 2>/dev/null || echo 1)
all: release #: Build the release version
clean: #: Delete all build artifacts
rm -rf $(BUILD_BASE_DIR)
cmake: #: Use CMake to create a Makefile build system
mkdir -p $(BUILD_BASE_DIR)/$(BUILD_DIR) && \
cmake -B \
"$(BUILD_BASE_DIR)/$(BUILD_DIR)" \
${CMAKE_FLAGS} \
$(GENERATOR) \
$(USE_CCACHE) \
$(FORCE_COLOR) \
${EXTRA_CMAKE_FLAGS}
build: #: Build the software based in BUILD_DIR and BUILD_TYPE variables
cmake --build $(BUILD_BASE_DIR)/$(BUILD_DIR) -j ${NUM_THREADS}
debug: #: Build with debugging symbols
$(MAKE) cmake BUILD_DIR=debug BUILD_TYPE=Debug
$(MAKE) build BUILD_DIR=debug
release: #: Build the release version
$(MAKE) cmake BUILD_DIR=release BUILD_TYPE=Release && \
$(MAKE) build BUILD_DIR=release
min_debug: #: Minimal build with debugging symbols
$(MAKE) cmake BUILD_DIR=debug BUILD_TYPE=debug EXTRA_CMAKE_FLAGS=-DVELOX_BUILD_MINIMAL=ON
$(MAKE) build BUILD_DIR=debug
benchmarks-build:
$(MAKE) release EXTRA_CMAKE_FLAGS="-DVELOX_BUILD_MINIMAL=ON -DVELOX_BUILD_BENCHMARKS=ON"
benchmarks-dump:
$(MAKE) benchmarks-build
mkdir -p $(BENCHMARKS_DIR)/dumps
find $(BENCHMARKS_DIR) -type f -executable -exec {} --bm_min_usec 100000 \;
unittest: debug #: Build with debugging and run unit tests
cd $(BUILD_BASE_DIR)/debug && ctest -j ${NUM_THREADS} -VV --output-on-failure
fuzzertest: debug #: Build with debugging and run expression fuzzer test.
$(BUILD_BASE_DIR)/debug/velox/expression/tests/velox_expression_fuzzer_test --steps 100000 --logtostderr=1 --minloglevel=0
format-fix: #: Fix formatting issues in the current branch
scripts/check.py format branch --fix
format-check: #: Check for formatting issues on the current branch
clang-format --version
scripts/check.py format branch
header-fix: #: Fix license header issues in the current branch
scripts/check.py header branch --fix
header-check: #: Check for license header issues on the current branch
scripts/check.py header branch
circleci-container: #: Build the linux container for CircleCi
$(MAKE) linux-container CONTAINER_NAME=circleci
check-container:
$(MAKE) linux-container CONTAINER_NAME=check
linux-container:
rm -rf /tmp/docker && \
mkdir -p /tmp/docker && \
cp scripts/setup-$(CONTAINER_NAME).sh scripts/$(CONTAINER_NAME)-container.dockfile /tmp/docker && \
cd /tmp/docker && \
docker build --tag "prestocpp/velox-$(CONTAINER_NAME):${USER}-$(shell date +%Y%m%d)" -f $(CONTAINER_NAME)-container.dockfile .
help: #: Show the help messages
@cat $(firstword $(MAKEFILE_LIST)) | \
awk '/^[-a-z]+:/' | \
awk -F: '{ printf("%-20s %s\n", $$1, $$NF) }'