diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-12-21 09:49:33 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-12-21 10:00:23 -0500 |
commit | 97c9ced70ac364f7067fc088b90184ab77c9ecd9 (patch) | |
tree | a10bd0808a8e395dd422bd8c5c9d1a7df14593b9 /.gitignore | |
parent | ef975432703754ca8ea10ac6db5ec171447bb345 (diff) | |
download | tor-97c9ced70ac364f7067fc088b90184ab77c9ecd9.tar.gz tor-97c9ced70ac364f7067fc088b90184ab77c9ecd9.zip |
Try @warning_flags to avoid bloating verbose make logs
We now accumulate warning flags in a separate variable,
"TOR_WARNING_FLAGS", and write it to a "warning_flags" file. Then
we test whether the compiler will accept "@warning_flags": if so, we
put "@warning_flags" in the CFLAGS; if not, we copy the contents of
"$TOR_WARNING_FLAGS" into the CFLAGS.
Closes ticket 28924.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index cedff8fb37..f1ce903a11 100644 --- a/.gitignore +++ b/.gitignore @@ -72,9 +72,12 @@ uptime-*.json /mkinstalldirs /Tor*Bundle.dmg /tor-*-win32.exe +/warning_flags + /coverage_html/ /callgraph/ + # /contrib/ /contrib/dist/tor.sh /contrib/dist/torctl |