pydistmesh icon indicating copy to clipboard operation
pydistmesh copied to clipboard

Prevent -mno-fused-madd issue in build

Open dhermes opened this issue 10 years ago • 1 comments

Prevent -mno-fused-madd issue in the build step either by setting

export CFLAGS=-Qunused-arguments
export CPPFLAGS=-Qunused-arguments

in the environment called by setup.py or simply document the workaround on OS X.

NOTE: Opened as an unfinished item from #7

dhermes avatar May 29 '14 05:05 dhermes

Potentially useful code:

>>> import platform
>>> platform.dist()
('Ubuntu', '12.04', 'precise')
>>> platform.mac_ver()
('', ('', '', ''), '')

dhermes avatar May 29 '14 05:05 dhermes