diff options
author | Jack Lloyd <[email protected]> | 2017-09-21 11:39:32 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-09-21 11:39:32 -0400 |
commit | a6420db31516405fb410a39830e29bfda3219ed6 (patch) | |
tree | a893e66d82d6af099d637fa5bc55716b9eebe57e /configure.py | |
parent | bbbc4c59ec85ec912b482afab1eccc0fd3b1f87a (diff) |
Improve support for IBM XLC
A uint128 type is available but is apparently broken, causes
problems with x25519
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index 8a6eb2ddd..45ff3bc8c 100755 --- a/configure.py +++ b/configure.py @@ -1852,7 +1852,7 @@ class MakefileListsGenerator(object): for t in targets: src_list, src_dir = self._build_paths.src_info(t) src_list.sort() - objects = sorted(self._objectfile_list(src_list, src_dir)) + objects = list(self._objectfile_list(src_list, src_dir)) obj_key = '%s_objs' % (t) out[obj_key] = makefile_list(objects) |