Skip to content

Commit

Permalink
Disable ccache (#681)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaidokert committed Jun 30, 2024
1 parent ba5bfa1 commit 270e128
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 @@ -38,8 +38,12 @@ def run(self):

# Running GN to generate build files
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')
])

# Running Ninja to build the project
print('Building project with Ninja...')
Expand Down

0 comments on commit 270e128

Please sign in to comment.