| 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 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |