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 libcxx.
Original hash: 55bca6a7d4c342a8e7bb42c1832f85f4150c4677.
  • Loading branch information
griwes committed Sep 4, 2020
1 parent c4c445b commit 493f1c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcxx/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 493f1c9

Please sign in to comment.