Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Turn arch-native flag off by default #311

Merged
merged 1 commit into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
See also https://pvp.haskell.org/faq

## Version 1.4.7.0

* Make `arch-native` disabled by default.

## Version 1.4.6.0

* Use GND&DerivingVia to derive `newtype` intances (`Data.Semigroup`, `Data.Monoid`, `Identity` etc).
Expand Down
7 changes: 4 additions & 3 deletions hashable.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: hashable
version: 1.4.6.0
version: 1.4.7.0
synopsis: A class for types that can be converted to a hash value
description:
This package defines a class, 'Hashable', for types that can be converted to a hash value.
Expand Down Expand Up @@ -61,10 +61,11 @@ flag integer-gmp
flag arch-native
description:
Use @-march=native@ when compiling C sources.
You may need to disable this flag if you are building distributable binaries
Portable implementation is 15-50% slower.
Consider enabling this flag if hashing performance is important.

manual: True
default: True
default: False

flag random-initial-seed
description:
Expand Down
Loading