Skip to content

Commit

Permalink
Disable ccache
Browse files Browse the repository at this point in the history
  • Loading branch information
kaidokert committed Jun 30, 2024
1 parent 56470c1 commit 0a5130f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,12 @@ def run(self):
run_command('starboard/tools/download_clang.sh')

print('Generating build files with GN...')
run_command(
['python', 'cobalt/build/gn.py', '-p', 'linux-x64x11', '-C', 'devel'])
run_command([
'gn', 'gen', 'out/linux-x64x11_devel',
('--args=target_platform="linux-x64x11"'
'build_type="devel"'
'enable_cc_wrapper=false')
])

print('Building project with Ninja...')
run_command(['ninja', '-C', 'out/linux-x64x11_devel'])
Expand Down

0 comments on commit 0a5130f

Please sign in to comment.