We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_XOPEN_SOURCE
1 parent 72db3fe commit d675b31Copy full SHA for d675b31
tools/please_pex/preamble/BUILD
@@ -8,7 +8,11 @@ c_binary(
8
srcs = glob(["*.c"]),
9
hdrs = glob(["*.h"]),
10
compiler_flags = ["-std=c11"],
11
- defines = ["_XOPEN_SOURCE=700"],
+ defines = [
12
+ # path.c relies on realpath(3)'s resolved_path == NULL feature, which was not standardised
13
+ # until POSIX.1-2008:
14
+ "_XOPEN_SOURCE=700",
15
+ ],
16
static = True,
17
visibility = [
18
"//tools/please_pex/pex:preamble",
0 commit comments