diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-11-18 14:23:00 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2014-01-14 15:05:21 +0700 |
commit | 58713dc4266f88ef59c9da92bcfd6f4fd6ae1ada (patch) | |
tree | ea4353b49aea688c10a187f364fb60c3d81eb343 /emcc | |
parent | 98cb4917eba85277a9743d4b6a84fc4903f17fca (diff) |
Replace getopt_long with musl version.
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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', |