Skip to content

Commit 4f86620

Browse files
committed
Try fixing ABI feature detection
1 parent e142dc1 commit 4f86620

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libcxx/utils/libcxx/test/dsl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,8 @@ def compilerMacros(config, flags=""):
308308
with open(test.getSourcePath(), "w") as sourceFile:
309309
sourceFile.write(
310310
"""
311-
#if __has_include(<__config_site>)
312-
# include <__config_site>
311+
#if __has_include(<__config>)
312+
# include <__config>
313313
#endif
314314
"""
315315
)

libcxx/utils/libcxx/test/features.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,10 +335,10 @@ def _mingwSupportsModules(cfg):
335335
]
336336

337337
# Deduce and add the test features that that are implied by the #defines in
338-
# the <__config_site> header.
338+
# the <__config> header.
339339
#
340340
# For each macro of the form `_LIBCPP_XXX_YYY_ZZZ` defined below that
341-
# is defined after including <__config_site>, add a Lit feature called
341+
# is defined after including <__config>, add a Lit feature called
342342
# `libcpp-xxx-yyy-zzz`. When a macro is defined to a specific value
343343
# (e.g. `_LIBCPP_ABI_VERSION=2`), the feature is `libcpp-xxx-yyy-zzz=<value>`.
344344
#

0 commit comments

Comments
 (0)