diff options
author | Joseph Myers <joseph@codesourcery.com> | 2019-11-28 17:22:22 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2019-11-28 17:22:22 +0000 |
commit | cdf203668eedb50db09f66cff494d44178d37131 (patch) | |
tree | 7a20a5b5ce825341dcdedf2fb1bb993818a45261 /scripts | |
parent | aa9452a3b19e414678062c65ff7a2133482d62c3 (diff) | |
download | glibc-cdf203668eedb50db09f66cff494d44178d37131.tar.gz |
Fix syntax error in build-many-glibcs.py.
The recent SPARC changes caused a syntax error:
'ccopts': '-m32 -mlong-double-128 -mcpu=v9'}],
^
SyntaxError: invalid syntax
Fixed by this patch.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build-many-glibcs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py index f4d66838b1..34c933acbc 100755 --- a/scripts/build-many-glibcs.py +++ b/scripts/build-many-glibcs.py @@ -359,7 +359,7 @@ class Context(object): os_name='linux-gnu', glibcs=[{}, {'arch': 'sparcv8', - 'ccopts': '-m32 -mlong-double-128 -mcpu=leon3'}], + 'ccopts': '-m32 -mlong-double-128 -mcpu=leon3'}, {'arch': 'sparcv9', 'ccopts': '-m32 -mlong-double-128 -mcpu=v9'}], extra_glibcs=[{'variant': 'disable-multi-arch', |