Skip to content

Commit

Permalink
Fix #21
Browse files Browse the repository at this point in the history
  • Loading branch information
GregBowyer authored Apr 11, 2019
1 parent 633743a commit d048c5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cld2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@


_DEBUG = False
_COMPILER_ARGS = ['-ggdb'] if _DEBUG else ['-O2']
_COMPILER_ARGS = ['-Wno-narrowing', '-ggdb'] if _DEBUG else ['-Wno-narrowing', '-O2']

# pylint: disable=invalid-name
_full_ffi = FFI()
Expand Down

1 comment on commit d048c5f

@samidarko
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Worked for me. Thanks! gcc (Gentoo 8.3.0-r1 p1.1) 8.3.0

Please sign in to comment.