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.
1 parent 328866a commit d86e8b7Copy full SHA for d86e8b7
stdlib/public/Platform/glibc.modulemap.gyb
@@ -21,6 +21,9 @@
21
module SwiftGlibc [system] {
22
% if CMAKE_SDK in ["LINUX", "FREEBSD", "CYGWIN"]:
23
link "pthread"
24
+ // FIXME: util contains rarely used functions and not usually needed. Unfortunately
25
+ // link directive doesn't work in the submodule yet.
26
+ link "util"
27
% end
28
29
link "dl"
@@ -32,6 +35,14 @@ module SwiftGlibc [system] {
32
35
header "${GLIBC_INCLUDE_PATH}/complex.h"
33
36
export *
34
37
}
38
+ module pty {
39
+ header "${GLIBC_INCLUDE_PATH}/pty.h"
40
+ export *
41
+ }
42
+ module utmp {
43
+ header "${GLIBC_INCLUDE_PATH}/utmp.h"
44
45
46
47
48
% if CMAKE_SDK in ["LINUX", "ANDROID", "CYGWIN"]:
0 commit comments