aboutsummaryrefslogtreecommitdiff
path: root/emcc
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2013-11-18 14:23:00 +0700
committerBruce Mitchener <bruce.mitchener@gmail.com>2014-01-14 15:05:21 +0700
commit58713dc4266f88ef59c9da92bcfd6f4fd6ae1ada (patch)
treeea4353b49aea688c10a187f364fb60c3d81eb343 /emcc
parent98cb4917eba85277a9743d4b6a84fc4903f17fca (diff)
Replace getopt_long with musl version.
Diffstat (limited to 'emcc')
-rwxr-xr-xemcc5
1 files changed, 4 insertions, 1 deletions
diff --git a/emcc b/emcc
index dc24a36b..ad97b50d 100755
--- a/emcc
+++ b/emcc
@@ -1440,7 +1440,6 @@ try:
libc_files = [
'dlmalloc.c',
os.path.join('libcxx', 'new.cpp'),
- os.path.join('libc', 'stdlib', 'getopt_long.c'),
]
musl_files = [
['internal', [
@@ -1559,6 +1558,10 @@ try:
'tgammaf.c',
'tgammal.c'
]],
+ ['misc', [
+ 'getopt.c',
+ 'getopt_long.c',
+ ]],
['multibyte', [
'btowc.c',
'mblen.c',