Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Commit

Permalink
Fix a typo in compiler detection.
Browse files Browse the repository at this point in the history
Bug 200553693

This is the beginning of a history rewrite annotation.
This is a rewrite of a commit originally made in submodule .upstream-tests.
Original hash: a6b4bfde326006234e8204fa4455d3fb4910ec76.
  • Loading branch information
griwes committed Sep 4, 2020
1 parent 493f1c9 commit c72bbe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .upstream-tests/utils/libcxx/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def _initTypeAndVersion(self):
major_ver = macros['__CUDACC_VER_MAJOR__']
minor_ver = macros['__CUDACC_VER_MINOR__']
patchlevel = macros['__CUDACC_VER_BUILD__']
if '__LIBCUDACXX_NVRTC_TEST__' in macro.keys():
if '__LIBCUDACXX_NVRTC_TEST__' in macros.keys():
self.is_nvrtc = True
elif '__PGIC__' in macros.keys():
compiler_type = "pgi"
Expand Down

0 comments on commit c72bbe4

Please sign in to comment.