File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,7 @@ group("default") {
14
14
" //lldb/test" ,
15
15
" //llvm/test" ,
16
16
]
17
- # FIXME: Reenable once libc hand-in-hand is figured out.
18
- if (false && current_os == " linux" ) {
17
+ if (current_os == " linux" ) {
19
18
deps += [
20
19
" //libcxx" ,
21
20
" //libcxxabi" ,
Original file line number Diff line number Diff line change
1
+ config (" common_utils_config" ) {
2
+ include_dirs = [ " ." ]
3
+ defines = [ " LIBC_NAMESPACE=__llvm_libc_common_utils" ]
4
+ }
5
+
6
+ group (" common_utils" ) {
7
+ public_configs = [ " :common_utils_config" ]
8
+ }
Original file line number Diff line number Diff line change @@ -247,6 +247,7 @@ if (libcxx_enable_shared) {
247
247
include_dirs = [ " ." ]
248
248
deps = [
249
249
" //compiler-rt/lib/builtins" ,
250
+ " //libc:common_utils" ,
250
251
" //libcxx/include" ,
251
252
" //libcxxabi/src:cxxabi_shared" ,
252
253
" //libunwind/src:unwind_shared" ,
@@ -298,6 +299,7 @@ if (libcxx_enable_static) {
298
299
}
299
300
deps = [
300
301
" //compiler-rt/lib/builtins" ,
302
+ " //libc:common_utils" ,
301
303
" //libcxx/include" ,
302
304
" //libcxxabi/src:cxxabi_static" ,
303
305
" //libunwind/src:unwind_static" ,
You can’t perform that action at this time.
0 commit comments