Skip to content

Commit

Permalink
Remove unnecessary parts of glibc modulemap.
Browse files Browse the repository at this point in the history
This should hopefully make it more portable to different
versions of glibc-using platforms.

Swift SVN r25964
  • Loading branch information
stormbrew committed Mar 10, 2015
1 parent 63979e3 commit 477becd
Showing 1 changed file with 0 additions and 98 deletions.
98 changes: 0 additions & 98 deletions stdlib/private/Glibc/module.map
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ module SwiftGlibc [system] {
module C {
module errno {
header "/usr/include/errno.h"
header "/usr/include/sys/errno.h"
export *
}
module signal {
Expand All @@ -31,11 +30,6 @@ module SwiftGlibc [system] {
export *
}

module stddef {
header "/usr/include/stddef.h"
export *
}

module stdlib {
header "/usr/include/stdlib.h"
export *
Expand All @@ -45,7 +39,6 @@ module SwiftGlibc [system] {
module string {
header "/usr/include/string.h"
export *
export Glibc.POSIX.strings
}
}

Expand Down Expand Up @@ -76,97 +69,6 @@ module SwiftGlibc [system] {
}
module unistd {
header "/usr/include/unistd.h"
header "/usr/include/sys/unistd.h"
export *
}
// Re-exported C headers.
module complex {
export cstd.complex
}

module ctype {
export cstd.ctype
}

module errno {
export cstd.errno
}

module fenv {
export cstd.fenv
}

module inttypes {
export cstd.inttypes
}

module iso646 {
export cstd.iso646
}

module limits {
export cstd.limits
}

module locale {
export cstd.locale
}

module math {
export cstd.math
}

module setjmp {
export cstd.setjmp
}

module signal {
export cstd.signal
}

module stdbool {
export cstd.stdbool
}

module stddef {
export cstd.stddef
}

module stdint {
export cstd.stdint
}

module stdio {
export cstd.stdio
}

module stdlib {
export cstd.stdlib
}

module string {
export cstd.string
}

module time {
export cstd.time
}

module wchar {
export cstd.wchar
}

module wctype {
export cstd.wctype
}
}

module bsd {
export *
link "bsd"

module stdlib {
header "/usr/include/bsd/stdlib.h"
export *
}
}
Expand Down

0 comments on commit 477becd

Please sign in to comment.