From 270e128174688dce3ad11eedefc93c14b96e119c Mon Sep 17 00:00:00 2001 From: Kaido Kert Date: Sun, 30 Jun 2024 14:57:24 -0700 Subject: [PATCH] Disable ccache (#681) --- setup.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 3a9bc6b157c16..19a7ada6a0522 100644 --- a/setup.py +++ b/setup.py @@ -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...')