-
Notifications
You must be signed in to change notification settings - Fork 132
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
Compiling develop branch on Raspberry Pi 4 - immintrin.h missing - ARM - x86 issue #547
Comments
More output from the scons DEBUG=1 command: As a result of "Unable to get cpuinfo, maybe install py-cpuinfo"
which seems to have removed the 1st warning but I still get the 2nd error, and I am still advised to install py-cpuinfo although it is now installed...
|
Looks like a copy-paste error, try changing "sse41" to "sse2" in diff --git a/lib/SConscript b/lib/SConscript
index 3ae5154b..7acfb356 100644
--- a/lib/SConscript
+++ b/lib/SConscript
@@ -112,7 +112,7 @@ if not env['HAVE_SSE4_1']:
if not env['HAVE_SSE2']:
print('Not compiling blake3 sse2 options')
- blake3 = [f for f in blake3 if 'sse41' not in f.path]
+ blake3 = [f for f in blake3 if 'sse2' not in f.path]
env.Append(CCFLAGS=['-DBLAKE3_NO_SSE2'])
library = env.Library( |
That does work, and rmlint is compiled and installed :) However I am now getting this error:
Should I file a separate report? |
Go ahead and open a separate issue for the assertion failure. It would be helpful if you could run rmlint in gdb ( |
This was causing issues on platforms that don't support SSE2, such as ARM. Fixes sahib#547
See #549 |
For me this is closed, please reopen if you don't agree :) |
This was causing issues on platforms that don't support SSE2, such as ARM. Fixes sahib#547
This was causing issues on platforms that don't support SSE2, such as ARM. Fixes sahib#547
This was causing issues on platforms that don't support SSE2, such as ARM. Fixes sahib#547
I am trying to avoid the problems I was having in 2020 with xattrs giving strange results (#436) and seemingly solved in #439
To do this I am trying to compile the current develop branch and following the instructions at https://rmlint.readthedocs.io/en/latest/install.html
scons config seems fine. But scons DEBUG=1 leads to a fatal error:
Blake3 is new and only present in the develop branch (I have had no problems compiling master 2.10.1)
From (just as examples) suijingfeng/vkQuake3#14 (comment) it looks like immintrin.h is for x86 only(?)
The text was updated successfully, but these errors were encountered: