diff options
author | Ori Bernstein <ori@eigenstate.org> | 2018-05-09 23:05:19 -0700 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2018-05-09 23:57:07 -0700 |
commit | 59b1d9b6c40d88d3b6373993662c3bce3541f3a0 (patch) | |
tree | 6a9ff640099d8a635cbd2530fcd93154f3da48e8 | |
parent | d7651f741ddd7b3db322a726a0499642d3c5fbec (diff) | |
download | mc-59b1d9b6c40d88d3b6373993662c3bce3541f3a0.tar.gz |
FreeBSD and NetBSD also have old assemblers.
-rw-r--r-- | mbld/syssel.myr | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mbld/syssel.myr b/mbld/syssel.myr index d522b7f..8c27812 100644 --- a/mbld/syssel.myr +++ b/mbld/syssel.myr @@ -187,6 +187,10 @@ const supports = {feat /* The version of gas that's shipped with openbsd is too old. */ | ("openbsd", CpuidSSE4): -> false | ("openbsd", CpuidFMA): -> false + | ("freebsd", CpuidSSE4): -> false + | ("freebsd", CpuidFMA): -> false + | ("netbsd", CpuidSSE4): -> false + | ("netbsd", CpuidFMA): -> false | (_, f): -> f == feat ;; } |