Skip to content

Commit

Permalink
Merge pull request #155 from pcubillos/c_compiler
Browse files Browse the repository at this point in the history
C compiler
  • Loading branch information
pcubillos authored Jun 1, 2024
2 parents 419e299 + e627086 commit 202807f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mc3/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
# mc3 Version:
MC3_VER = 3 # Major version
MC3_MIN = 1 # Minor version
MC3_REV = 4 # Revision
MC3_REV = 5 # Revision

__version__ = f'{MC3_VER}.{MC3_MIN}.{MC3_REV}'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
cfiles = list(filter(lambda x: not re.search('[.#].+[.]c$', x), cfiles))

inc = [get_include(), incdir]
eca = ['-O3', '-ffast-math']
ela = []
eca = ['-lm', '-O3', '-ffast-math']
ela = ['-lm']

extensions = [
Extension(
Expand Down

0 comments on commit 202807f

Please sign in to comment.