File tree 1 file changed +19
-0
lines changed
utils/bazel/llvm-project-overlay/libc 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -1076,6 +1076,22 @@ libc_support_library(
1076
1076
],
1077
1077
)
1078
1078
1079
+ libc_support_library (
1080
+ name = "__support_osutil_pid" ,
1081
+ srcs = ["src/__support/OSUtil/linux/pid.cpp" ],
1082
+ hdrs = ["src/__support/OSUtil/pid.h" ],
1083
+ target_compatible_with = select ({
1084
+ "@platforms//os:linux" : [],
1085
+ "//conditions:default" : ["@platforms//:incompatible" ],
1086
+ }),
1087
+ deps = [
1088
+ ":__support_macros_attributes" ,
1089
+ ":__support_macros_optimization" ,
1090
+ ":__support_osutil_syscall" ,
1091
+ ":types_pid_t" ,
1092
+ ]
1093
+ )
1094
+
1079
1095
libc_support_library (
1080
1096
name = "__support_stringutil" ,
1081
1097
srcs = glob (["src/__support/StringUtil/tables/**/*.h" ]) + [
@@ -3032,8 +3048,11 @@ libc_function(
3032
3048
hdrs = ["src/unistd/getpid.h" ],
3033
3049
deps = [
3034
3050
":__support_common" ,
3051
+ ":__support_macros_config" ,
3052
+ ":__support_osutil_pid" ,
3035
3053
":__support_osutil_syscall" ,
3036
3054
":errno" ,
3055
+ ":types_pid_t" ,
3037
3056
],
3038
3057
)
3039
3058
You can’t perform that action at this time.
0 commit comments