Skip to content

Commit

Permalink
Fix bug of cycles on windows
Browse files Browse the repository at this point in the history
There is something wrong with cycles.  It crashes when not compiled with
the proper flags.

I could try to fix it, but I rather just get ride of cycles alltogether.
  • Loading branch information
guillaumechereau committed Sep 16, 2018
1 parent 5541dee commit 242bd8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ if debug:
if env['CC'] == 'gcc': env.Append(CCFLAGS='-Og')
else:
env.Append(CCFLAGS=['-O3', '-DNDEBUG'])
if env['CC'] == 'gcc': env.Append(CCFLAGS='-Ofast')
if env['CC'] == 'gcc': env.Append(CFLAGS='-Ofast', CXXFLAGS='-Ofast')

if profile or debug:
env.Append(CCFLAGS='-g')
Expand Down

0 comments on commit 242bd8d

Please sign in to comment.