Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(305)

Side by Side Diff: fusl/BUILD.gn

Issue 1576423004: Remove -Wno-shift-op-parentheses for fusl build (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | fusl/include/byteswap.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 static_library("fusl") { 5 static_library("fusl") {
6 configs = [] 6 configs = []
7 7
8 cflags = [ 8 cflags = [
9 # Flags from musl 9 # Flags from musl
10 "-std=c99", 10 "-std=c99",
(...skipping 10 matching lines...) Expand all
21 "-ffunction-sections", 21 "-ffunction-sections",
22 "-fdata-sections", 22 "-fdata-sections",
23 "-Werror=implicit-function-declaration", 23 "-Werror=implicit-function-declaration",
24 "-Werror=implicit-int", 24 "-Werror=implicit-int",
25 "-Werror=pointer-sign", 25 "-Werror=pointer-sign",
26 "-Werror=pointer-arith", 26 "-Werror=pointer-arith",
27 27
28 # Flags we add to get build working 28 # Flags we add to get build working
29 "-Wno-bitwise-op-parentheses", 29 "-Wno-bitwise-op-parentheses",
30 "-Wno-logical-op-parentheses", 30 "-Wno-logical-op-parentheses",
31 "-Wno-shift-op-parentheses",
32 31
33 # Silent builds. 32 # Silent builds.
34 "-Wno-ignored-attributes", 33 "-Wno-ignored-attributes",
35 "-Wno-string-plus-int", 34 "-Wno-string-plus-int",
36 "-Wno-tautological-compare", 35 "-Wno-tautological-compare",
37 "-Wno-unknown-pragmas", 36 "-Wno-unknown-pragmas",
38 ] 37 ]
39 38
40 # Arch specific includes. 39 # Arch specific includes.
41 include_dirs = [ "arch/x86_64" ] 40 include_dirs = [ "arch/x86_64" ]
(...skipping 1337 matching lines...) Expand 10 before | Expand all | Expand 10 after
1379 "//fusl/src/signal/x86_64/sigsetjmp.s", 1378 "//fusl/src/signal/x86_64/sigsetjmp.s",
1380 "//fusl/src/string/x86_64/memcpy.s", 1379 "//fusl/src/string/x86_64/memcpy.s",
1381 "//fusl/src/string/x86_64/memmove.s", 1380 "//fusl/src/string/x86_64/memmove.s",
1382 "//fusl/src/string/x86_64/memset.s", 1381 "//fusl/src/string/x86_64/memset.s",
1383 "//fusl/src/thread/x86_64/__set_thread_area.s", 1382 "//fusl/src/thread/x86_64/__set_thread_area.s",
1384 "//fusl/src/thread/x86_64/__unmapself.s", 1383 "//fusl/src/thread/x86_64/__unmapself.s",
1385 "//fusl/src/thread/x86_64/clone.s", 1384 "//fusl/src/thread/x86_64/clone.s",
1386 "//fusl/src/thread/x86_64/syscall_cp.s", 1385 "//fusl/src/thread/x86_64/syscall_cp.s",
1387 ] 1386 ]
1388 } 1387 }
OLDNEW
« no previous file with comments | « no previous file | fusl/include/byteswap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698