Skip to content

Commit

Permalink
"get_gcc_version" -> "get_compiler_version"
Browse files Browse the repository at this point in the history
  • Loading branch information
vollous committed May 16, 2024
1 parent 5e4c69f commit eceaee4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def get_compiler():

if (sys.platform == "darwin"):
compiler += "-clang-"
compiler += get_gcc_version()
compiler += get_compiler_version()

return compiler

Expand Down Expand Up @@ -93,7 +93,7 @@ def check_profile(profile):
check_profile(profile)


def get_gcc_version():
def get_compiler_version():
if (sys.platform == "linux"):
version_response = subprocess.check_output(
"gcc --version".split(), encoding="UTF-8"
Expand Down

0 comments on commit eceaee4

Please sign in to comment.