Skip to content

Commit

Permalink
scons: use -fms-extensions + -std=c99 as fallback...
Browse files Browse the repository at this point in the history
  • Loading branch information
sahib committed Jan 11, 2015
1 parent 0644a86 commit 0dbbb1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -480,9 +480,9 @@ if 'LDFLAGS' in os.environ:
# Support museums or other debian flavours:
conf.check_c11()
if conf.env['HAVE_C11']:
c_standard = '-std=c11'
c_standard = ['-std=c11']
else:
c_standard = '-std=c99'
c_standard = ['-std=c99', '-fms-extensions']


conf.env.Append(CCFLAGS=[
Expand Down

0 comments on commit 0dbbb1c

Please sign in to comment.