Skip to content

Commit e79a70a

Browse files
committed
HPy unit tests: use 'gcc' without a full path
1 parent 43ce485 commit e79a70a

File tree

1 file changed

+2
-2
lines changed
  • graalpython/lib-graalpython/modules/hpy/test

1 file changed

+2
-2
lines changed

graalpython/lib-graalpython/modules/hpy/test/support.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,8 +317,8 @@ def change_compiler(conf, cc, cxx, stdlib):
317317
cxx = join(llvm_toolchain_vanilla, 'clang++')
318318
stdlib = "libc++"
319319
else:
320-
cc = join(os.path.sep, 'usr', 'bin', 'gcc')
321-
cxx = join(os.path.sep, 'usr', 'bin', 'g++')
320+
cc = 'gcc'
321+
cxx = 'g++'
322322
stdlib = None
323323
change_compiler(conf, cc, cxx, stdlib)
324324

0 commit comments

Comments
 (0)