Skip to content

Commit

Permalink
Simplify some more
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsta committed Sep 23, 2024
1 parent 30811b5 commit 2e16de6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#)
# use_ccache = (not windows) and spawn.find_executable('ccache') != None and native_build
use_ccache = os.path.exists("./use_ccache")

'''
# Prefer clang on UNIX if available
if use_clang:
if use_ccache:
Expand All @@ -53,9 +53,10 @@
else:
# leave defaults
pass

'''

def get_cflags(asan=False, warnings=True, std_flag=False):
return ""
if windows:
return ["/O2"]
if asan:
Expand Down

0 comments on commit 2e16de6

Please sign in to comment.