OLD | NEW |
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 source_set("fusl-x86_64") { | 5 source_set("fusl-x86_64") { |
6 configs = [] | 6 configs = [] |
7 | 7 |
8 asmflags = [ "-Wno-unused-command-line-argument" ] | 8 asmflags = [ "-Wno-unused-command-line-argument" ] |
9 | 9 |
10 # Arch specific sources. | 10 # Arch specific sources. |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 "-fno-unwind-tables", | 75 "-fno-unwind-tables", |
76 "-fno-asynchronous-unwind-tables", | 76 "-fno-asynchronous-unwind-tables", |
77 "-ffunction-sections", | 77 "-ffunction-sections", |
78 "-fdata-sections", | 78 "-fdata-sections", |
79 "-Werror=implicit-function-declaration", | 79 "-Werror=implicit-function-declaration", |
80 "-Werror=implicit-int", | 80 "-Werror=implicit-int", |
81 "-Werror=pointer-sign", | 81 "-Werror=pointer-sign", |
82 "-Werror=pointer-arith", | 82 "-Werror=pointer-arith", |
83 | 83 |
84 # Silent builds. | 84 # Silent builds. |
85 "-Wno-ignored-attributes", | |
86 "-Wno-string-plus-int", | 85 "-Wno-string-plus-int", |
87 "-Wno-tautological-compare", | 86 "-Wno-tautological-compare", |
88 ] | 87 ] |
89 | 88 |
90 # Arch specific includes. | 89 # Arch specific includes. |
91 include_dirs = [ "arch/x86_64" ] | 90 include_dirs = [ "arch/x86_64" ] |
92 | 91 |
93 # General includes. | 92 # General includes. |
94 include_dirs += [ | 93 include_dirs += [ |
95 "src/internal", | 94 "src/internal", |
(...skipping 1288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1384 "//fusl/src/unistd/ttyname.c", | 1383 "//fusl/src/unistd/ttyname.c", |
1385 "//fusl/src/unistd/ttyname_r.c", | 1384 "//fusl/src/unistd/ttyname_r.c", |
1386 "//fusl/src/unistd/ualarm.c", | 1385 "//fusl/src/unistd/ualarm.c", |
1387 "//fusl/src/unistd/unlink.c", | 1386 "//fusl/src/unistd/unlink.c", |
1388 "//fusl/src/unistd/unlinkat.c", | 1387 "//fusl/src/unistd/unlinkat.c", |
1389 "//fusl/src/unistd/usleep.c", | 1388 "//fusl/src/unistd/usleep.c", |
1390 "//fusl/src/unistd/write.c", | 1389 "//fusl/src/unistd/write.c", |
1391 "//fusl/src/unistd/writev.c", | 1390 "//fusl/src/unistd/writev.c", |
1392 ] | 1391 ] |
1393 } | 1392 } |
OLD | NEW |