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

Side by Side Diff: fusl/BUILD.gn

Issue 1581793002: Remove -Wno-unknown-pragmas from fusl build (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: comment to clang bug 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/src/internal/libm.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 11 matching lines...) Expand all
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 # Silent builds. 28 # Silent builds.
29 "-Wno-ignored-attributes", 29 "-Wno-ignored-attributes",
30 "-Wno-string-plus-int", 30 "-Wno-string-plus-int",
31 "-Wno-tautological-compare", 31 "-Wno-tautological-compare",
32 "-Wno-unknown-pragmas",
33 ] 32 ]
34 33
35 # Arch specific includes. 34 # Arch specific includes.
36 include_dirs = [ "arch/x86_64" ] 35 include_dirs = [ "arch/x86_64" ]
37 36
38 # General includes. 37 # General includes.
39 include_dirs += [ 38 include_dirs += [
40 "src/internal", 39 "src/internal",
41 "include", 40 "include",
42 ] 41 ]
(...skipping 1331 matching lines...) Expand 10 before | Expand all | Expand 10 after
1374 "//fusl/src/signal/x86_64/sigsetjmp.s", 1373 "//fusl/src/signal/x86_64/sigsetjmp.s",
1375 "//fusl/src/string/x86_64/memcpy.s", 1374 "//fusl/src/string/x86_64/memcpy.s",
1376 "//fusl/src/string/x86_64/memmove.s", 1375 "//fusl/src/string/x86_64/memmove.s",
1377 "//fusl/src/string/x86_64/memset.s", 1376 "//fusl/src/string/x86_64/memset.s",
1378 "//fusl/src/thread/x86_64/__set_thread_area.s", 1377 "//fusl/src/thread/x86_64/__set_thread_area.s",
1379 "//fusl/src/thread/x86_64/__unmapself.s", 1378 "//fusl/src/thread/x86_64/__unmapself.s",
1380 "//fusl/src/thread/x86_64/clone.s", 1379 "//fusl/src/thread/x86_64/clone.s",
1381 "//fusl/src/thread/x86_64/syscall_cp.s", 1380 "//fusl/src/thread/x86_64/syscall_cp.s",
1382 ] 1381 ]
1383 } 1382 }
OLDNEW
« no previous file with comments | « no previous file | fusl/src/internal/libm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698