Skip to content

Commit

Permalink
Set CC to clang-15
Browse files Browse the repository at this point in the history
  • Loading branch information
kazarmy committed Dec 2, 2023
1 parent 908616c commit 78bbdf8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ jobs:

ubuntu-llvm-15:
runs-on: ubuntu-22.04
env:
CC: clang-15

steps:
- name: Checkout rz-bindgen
Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ target_sphinx = targets.contains('sphinx')
doxygen_path = get_option('doxygen_path')

if clang_path == ''
llvm_config = find_program('llvm-config', 'llvm-config-15', 'llvm-config-7', required: false)
llvm_config = find_program('llvm-config-15', 'llvm-config', 'llvm-config-7', required: false)
if llvm_config.found()
clang_path = run_command(llvm_config, '--libdir', check: true).stdout().strip()
elif build_machine.system() == 'darwin'
Expand All @@ -46,7 +46,7 @@ if rizin_include_path == ''
endif

if clang_args == ''
clang = find_program('clang', 'clang-15', 'clang-7', required: false)
clang = find_program('clang-15', 'clang', 'clang-7', required: false)
if clang.found()
clang_args += ' -resource-dir='
clang_args += '"' + run_command(clang, '-print-resource-dir', check: true).stdout().strip() + '"'
Expand Down

0 comments on commit 78bbdf8

Please sign in to comment.