forked from OSchip/llvm-project
[compiler-rt][test] Add feature host-byteorder-big-endian
This is needed to make 5a9b792d72
"[gcov] Temporarily unsupport host-byteorder-big-endian"
work.
This commit is contained in:
parent
5a9b792d72
commit
415c689dd2
|
@ -103,6 +103,8 @@ config.available_features.add(config.host_os.lower())
|
|||
if re.match(r'^x86_64.*-linux', config.target_triple):
|
||||
config.available_features.add("x86_64-linux")
|
||||
|
||||
config.available_features.add("host-byteorder-" + sys.byteorder + "-endian")
|
||||
|
||||
if config.have_zlib == "1":
|
||||
config.available_features.add("zlib")
|
||||
|
||||
|
|
Loading…
Reference in New Issue