-
Notifications
You must be signed in to change notification settings - Fork 57
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
Deal with deprecated AVX2 feature (and possibly others) #237
Comments
Update: sbcl 2.0.1 removed the The main issue this brings up is that the |
The AVX2 flag seems to be alive and kicking in 2.0.3 (see sbcl/sbcl@b01dce7 for instance). |
It was moved out of
|
In the original issue description, I incorrectly assumed that SBCL would still respect |
Yeah, I've been looking at |
It looks like the upcoming sbcl 2.0.1 release includes changes to move certain symbols out of
cl:*features*
and intosb-impl:+internal-features+
[1]. IIUC, any "non-public" features will continue to work (for now), but issue a warning [2].I haven't tested it, but it looks like we use at least one such soon-to-be-deprecated feature, namely
avx2
. We should figure out what to do about our usage of any "internal" features.Options include:
avx2
in*features*
The text was updated successfully, but these errors were encountered: