diff options
| author | Mike McQuaid | 2017-03-11 08:40:34 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2017-03-11 08:40:48 +0000 |
| commit | d0f1fa668ce2a943f1613080f8b517decdeab215 (patch) | |
| tree | d67be7b79570896de087bf18419da800887c7061 | |
| parent | 371a830028f53c0ac94d37b736307837b2f2b120 (diff) | |
| download | brew-d0f1fa668ce2a943f1613080f8b517decdeab215.tar.bz2 | |
hardware: use march=native for generic module.
This matches Linux where this behaviour was original imported from.
| -rw-r--r-- | Library/Homebrew/hardware.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/hardware.rb b/Library/Homebrew/hardware.rb index fd5251bf6..74f656d34 100644 --- a/Library/Homebrew/hardware.rb +++ b/Library/Homebrew/hardware.rb @@ -12,7 +12,7 @@ module Hardware penryn: "-march=core2 -msse4.1", core2: "-march=core2", core: "-march=prescott", - dunno: "", + dunno: "-march=native", }.freeze def optimization_flags |
