Skip to content

Commit 51edeeb

Browse files
committed
v1.11.0
2 parents e72d1d5 + bb471e2 commit 51edeeb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+3434
-922
lines changed

.clang-tidy

+4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
---
22
Checks: '
33
,readability-avoid-const-params-in-decls,
4+
,readability-inconsistent-declaration-parameter-name,
45
,readability-non-const-parameter,
56
,readability-redundant-string-cstr,
67
,readability-redundant-string-init,
8+
,readability-simplify-boolean-expr,
79
'
810
WarningsAsErrors: '
911
,readability-avoid-const-params-in-decls,
12+
,readability-inconsistent-declaration-parameter-name,
1013
,readability-non-const-parameter,
1114
,readability-redundant-string-cstr,
1215
,readability-redundant-string-init,
16+
,readability-simplify-boolean-expr,
1317
'

.github/workflows/linux.yml

+28-4
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,18 @@ jobs:
1313
image: centos:7
1414
steps:
1515
- uses: actions/checkout@v2
16+
- uses: codespell-project/actions-codespell@master
17+
with:
18+
ignore_words_list: fo,wee
1619
- name: Install dependencies
1720
run: |
1821
curl -L -O https://github.com/Kitware/CMake/releases/download/v3.16.4/cmake-3.16.4-Linux-x86_64.sh
1922
chmod +x cmake-3.16.4-Linux-x86_64.sh
2023
./cmake-3.16.4-Linux-x86_64.sh --skip-license --prefix=/usr/local
21-
curl -L -O https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/epel/7/x86_64/Packages/p/p7zip-16.02-10.el7.x86_64.rpm
22-
curl -L -O https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/epel/7/x86_64/Packages/p/p7zip-plugins-16.02-10.el7.x86_64.rpm
23-
rpm -U --quiet p7zip-16.02-10.el7.x86_64.rpm
24-
rpm -U --quiet p7zip-plugins-16.02-10.el7.x86_64.rpm
24+
curl -L -O https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/epel/7/x86_64/Packages/p/p7zip-16.02-20.el7.x86_64.rpm
25+
curl -L -O https://www.mirrorservice.org/sites/dl.fedoraproject.org/pub/epel/7/x86_64/Packages/p/p7zip-plugins-16.02-20.el7.x86_64.rpm
26+
rpm -U --quiet p7zip-16.02-20.el7.x86_64.rpm
27+
rpm -U --quiet p7zip-plugins-16.02-20.el7.x86_64.rpm
2528
yum install -y make gcc-c++ libasan clang-analyzer
2629
2730
- name: Build debug ninja
@@ -123,3 +126,24 @@ jobs:
123126
- name: clang-tidy
124127
run: /usr/lib/llvm-10/share/clang/run-clang-tidy.py -header-filter=src
125128
working-directory: build-clang
129+
130+
build-with-python:
131+
runs-on: [ubuntu-latest]
132+
container:
133+
image: ${{ matrix.image }}
134+
strategy:
135+
matrix:
136+
image: ['ubuntu:14.04', 'ubuntu:16.04', 'ubuntu:18.04']
137+
steps:
138+
- uses: actions/checkout@v2
139+
- name: Install dependencies
140+
run: |
141+
apt update
142+
apt install -y g++ python3
143+
- name: ${{ matrix.image }}
144+
run: |
145+
python3 configure.py --bootstrap
146+
./ninja all
147+
./ninja_test --gtest_filter=-SubprocessTest.SetWithLots
148+
python3 misc/ninja_syntax_test.py
149+
./misc/output_test.py

.github/workflows/macos.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,11 @@ jobs:
2121
env:
2222
MACOSX_DEPLOYMENT_TARGET: 10.12
2323
run: |
24-
sudo xcode-select -s /Applications/Xcode_12.2.app
2524
cmake -Bbuild -GXcode '-DCMAKE_OSX_ARCHITECTURES=arm64;x86_64'
2625
cmake --build build --config Release
2726
2827
- name: Test ninja
29-
run: ctest -vv
28+
run: ctest -C Release -vv
3029
working-directory: build
3130

3231
- name: Create ninja archive

.github/workflows/windows.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,15 @@ jobs:
1919
- name: Build ninja
2020
shell: bash
2121
run: |
22-
cmake -DCMAKE_BUILD_TYPE=Release -B build
22+
cmake -Bbuild
23+
cmake --build build --parallel --config Debug
2324
cmake --build build --parallel --config Release
2425
25-
- name: Test ninja
26+
- name: Test ninja (Debug)
27+
run: .\ninja_test.exe
28+
working-directory: build/Debug
29+
30+
- name: Test ninja (Release)
2631
run: .\ninja_test.exe
2732
working-directory: build/Release
2833

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,12 @@
3838

3939
# Qt Creator project files
4040
/CMakeLists.txt.user
41+
42+
# clangd
43+
/.clangd/
44+
/compile_commands.json
45+
/.cache/
46+
47+
# Visual Studio files
48+
/.vs/
49+
/out/

.travis.yml

-36
This file was deleted.

CMakeLists.txt

+43-21
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.15)
22

3-
include(CheckIncludeFileCXX)
3+
include(CheckSymbolExists)
44
include(CheckIPOSupported)
55

66
project(ninja)
@@ -18,16 +18,18 @@ endif()
1818
# --- compiler flags
1919
if(MSVC)
2020
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
21-
string(APPEND CMAKE_CXX_FLAGS " /W4 /GR- /Zc:__cplusplus")
21+
string(REPLACE "/GR" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS})
22+
add_compile_options(/W4 /wd4100 /wd4267 /wd4706 /wd4702 /wd4244 /GR- /Zc:__cplusplus)
23+
add_compile_definitions(_CRT_SECURE_NO_WARNINGS)
2224
else()
2325
include(CheckCXXCompilerFlag)
2426
check_cxx_compiler_flag(-Wno-deprecated flag_no_deprecated)
2527
if(flag_no_deprecated)
26-
string(APPEND CMAKE_CXX_FLAGS " -Wno-deprecated")
28+
add_compile_options(-Wno-deprecated)
2729
endif()
2830
check_cxx_compiler_flag(-fdiagnostics-color flag_color_diag)
2931
if(flag_color_diag)
30-
string(APPEND CMAKE_CXX_FLAGS " -fdiagnostics-color")
32+
add_compile_options(-fdiagnostics-color)
3133
endif()
3234
endif()
3335

@@ -37,7 +39,7 @@ if(RE2C)
3739
# the depfile parser and ninja lexers are generated using re2c.
3840
function(re2c IN OUT)
3941
add_custom_command(DEPENDS ${IN} OUTPUT ${OUT}
40-
COMMAND ${RE2C} -b -i --no-generation-date -o ${OUT} ${IN}
42+
COMMAND ${RE2C} -b -i --no-generation-date --no-version -o ${OUT} ${IN}
4143
)
4244
endfunction()
4345
re2c(${PROJECT_SOURCE_DIR}/src/depfile_parser.in.cc ${PROJECT_BINARY_DIR}/depfile_parser.cc)
@@ -53,22 +55,35 @@ target_include_directories(libninja-re2c PRIVATE src)
5355
function(check_platform_supports_browse_mode RESULT)
5456
# Make sure the inline.sh script works on this platform.
5557
# It uses the shell commands such as 'od', which may not be available.
58+
5659
execute_process(
5760
COMMAND sh -c "echo 'TEST' | src/inline.sh var"
58-
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
61+
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
5962
RESULT_VARIABLE inline_result
6063
OUTPUT_QUIET
6164
ERROR_QUIET
6265
)
6366
if(NOT inline_result EQUAL "0")
6467
# The inline script failed, so browse mode is not supported.
6568
set(${RESULT} "0" PARENT_SCOPE)
69+
if(NOT WIN32)
70+
message(WARNING "browse feature omitted due to inline script failure")
71+
endif()
6672
return()
6773
endif()
6874

6975
# Now check availability of the unistd header
70-
check_include_file_cxx(unistd.h PLATFORM_HAS_UNISTD_HEADER)
71-
set(${RESULT} "${PLATFORM_HAS_UNISTD_HEADER}" PARENT_SCOPE)
76+
check_symbol_exists(fork "unistd.h" HAVE_FORK)
77+
check_symbol_exists(pipe "unistd.h" HAVE_PIPE)
78+
set(browse_supported 0)
79+
if (HAVE_FORK AND HAVE_PIPE)
80+
set(browse_supported 1)
81+
endif ()
82+
set(${RESULT} "${browse_supported}" PARENT_SCOPE)
83+
if(NOT browse_supported)
84+
message(WARNING "browse feature omitted due to missing `fork` and `pipe` functions")
85+
endif()
86+
7287
endfunction()
7388

7489
check_platform_supports_browse_mode(platform_supports_ninja_browse)
@@ -88,11 +103,14 @@ add_library(libninja OBJECT
88103
src/eval_env.cc
89104
src/graph.cc
90105
src/graphviz.cc
106+
src/json.cc
91107
src/line_printer.cc
92108
src/manifest_parser.cc
93109
src/metrics.cc
110+
src/missing_deps.cc
94111
src/parser.cc
95112
src/state.cc
113+
src/status.cc
96114
src/string_piece_util.cc
97115
src/util.cc
98116
src/version.cc
@@ -104,10 +122,8 @@ if(WIN32)
104122
src/msvc_helper-win32.cc
105123
src/msvc_helper_main-win32.cc
106124
src/getopt.c
125+
src/minidump-win32.cc
107126
)
108-
if(MSVC)
109-
target_sources(libninja PRIVATE src/minidump-win32.cc)
110-
endif()
111127
else()
112128
target_sources(libninja PRIVATE src/subprocess-posix.cc)
113129
if(CMAKE_SYSTEM_NAME STREQUAL "OS400" OR CMAKE_SYSTEM_NAME STREQUAL "AIX")
@@ -128,13 +144,17 @@ endif()
128144
# On IBM i (identified as "OS400" for compatibility reasons) and AIX, this fixes missing
129145
# PRId64 (and others) at compile time in C++ sources
130146
if(CMAKE_SYSTEM_NAME STREQUAL "OS400" OR CMAKE_SYSTEM_NAME STREQUAL "AIX")
131-
string(APPEND CMAKE_CXX_FLAGS " -D__STDC_FORMAT_MACROS")
147+
add_compile_definitions(__STDC_FORMAT_MACROS)
132148
endif()
133149

134150
# Main executable is library plus main() function.
135151
add_executable(ninja src/ninja.cc)
136152
target_link_libraries(ninja PRIVATE libninja libninja-re2c)
137153

154+
if(WIN32)
155+
target_sources(ninja PRIVATE windows/ninja.manifest)
156+
endif()
157+
138158
# Adds browse mode into the ninja binary if it's supported by the host platform.
139159
if(platform_supports_ninja_browse)
140160
# Inlines src/browse.py into the browse_py.h header, so that it can be included
@@ -143,20 +163,20 @@ if(platform_supports_ninja_browse)
143163
OUTPUT build/browse_py.h
144164
MAIN_DEPENDENCY src/browse.py
145165
DEPENDS src/inline.sh
146-
COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/build
166+
COMMAND ${CMAKE_COMMAND} -E make_directory ${PROJECT_BINARY_DIR}/build
147167
COMMAND src/inline.sh kBrowsePy
148168
< src/browse.py
149-
> ${CMAKE_BINARY_DIR}/build/browse_py.h
150-
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
169+
> ${PROJECT_BINARY_DIR}/build/browse_py.h
170+
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
151171
VERBATIM
152172
)
153173

154174
target_compile_definitions(ninja PRIVATE NINJA_HAVE_BROWSE)
155175
target_sources(ninja PRIVATE src/browse.cc)
156176
set_source_files_properties(src/browse.cc
157177
PROPERTIES
158-
OBJECT_DEPENDS "${CMAKE_BINARY_DIR}/build/browse_py.h"
159-
INCLUDE_DIRECTORIES "${CMAKE_BINARY_DIR}"
178+
OBJECT_DEPENDS "${PROJECT_BINARY_DIR}/build/browse_py.h"
179+
INCLUDE_DIRECTORIES "${PROJECT_BINARY_DIR}"
160180
COMPILE_DEFINITIONS NINJA_PYTHON="python"
161181
)
162182
endif()
@@ -175,8 +195,10 @@ if(BUILD_TESTING)
175195
src/dyndep_parser_test.cc
176196
src/edit_distance_test.cc
177197
src/graph_test.cc
198+
src/json_test.cc
178199
src/lexer_test.cc
179200
src/manifest_parser_test.cc
201+
src/missing_deps_test.cc
180202
src/ninja_test.cc
181203
src/state_test.cc
182204
src/string_piece_util_test.cc
@@ -203,11 +225,11 @@ if(BUILD_TESTING)
203225

204226
if(CMAKE_SYSTEM_NAME STREQUAL "AIX" AND CMAKE_SIZEOF_VOID_P EQUAL 4)
205227
# These tests require more memory than will fit in the standard AIX shared stack/heap (256M)
206-
target_link_libraries(hash_collision_bench PRIVATE "-Wl,-bmaxdata:0x80000000")
207-
target_link_libraries(manifest_parser_perftest PRIVATE "-Wl,-bmaxdata:0x80000000")
228+
target_link_options(hash_collision_bench PRIVATE "-Wl,-bmaxdata:0x80000000")
229+
target_link_options(manifest_parser_perftest PRIVATE "-Wl,-bmaxdata:0x80000000")
208230
endif()
209231

210-
add_test(NinjaTest ninja_test)
232+
add_test(NAME NinjaTest COMMAND ninja_test)
211233
endif()
212234

213-
install(TARGETS ninja DESTINATION bin)
235+
install(TARGETS ninja)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ to build Ninja with itself.
3737
### CMake
3838

3939
```
40-
cmake -Bbuild-cmake -H.
40+
cmake -Bbuild-cmake
4141
cmake --build build-cmake
4242
```
4343

configure.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def is_msvc(self):
8484
return self._platform == 'msvc'
8585

8686
def msvc_needs_fs(self):
87-
popen = subprocess.Popen(['cl', '/nologo', '/?'],
87+
popen = subprocess.Popen(['cl', '/nologo', '/help'],
8888
stdout=subprocess.PIPE,
8989
stderr=subprocess.PIPE)
9090
out, err = popen.communicate()
@@ -479,7 +479,7 @@ def has_re2c():
479479
return False
480480
if has_re2c():
481481
n.rule('re2c',
482-
command='re2c -b -i --no-generation-date -o $out $in',
482+
command='re2c -b -i --no-generation-date --no-version -o $out $in',
483483
description='RE2C $out')
484484
# Generate the .cc files in the source directory so we can check them in.
485485
n.build(src('depfile_parser.cc'), 're2c', src('depfile_parser.in.cc'))
@@ -507,12 +507,15 @@ def has_re2c():
507507
'eval_env',
508508
'graph',
509509
'graphviz',
510+
'json',
510511
'lexer',
511512
'line_printer',
512513
'manifest_parser',
513514
'metrics',
515+
'missing_deps',
514516
'parser',
515517
'state',
518+
'status',
516519
'string_piece_util',
517520
'util',
518521
'version']:
@@ -575,10 +578,13 @@ def has_re2c():
575578
'disk_interface_test',
576579
'edit_distance_test',
577580
'graph_test',
581+
'json_test',
578582
'lexer_test',
579583
'manifest_parser_test',
584+
'missing_deps_test',
580585
'ninja_test',
581586
'state_test',
587+
'status_test',
582588
'string_piece_util_test',
583589
'subprocess_test',
584590
'test',

0 commit comments

Comments
 (0)