-
Notifications
You must be signed in to change notification settings - Fork 313
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
Need method to disable CPU flag detection at build time #266
Comments
What a coincidence! I was working on this today after discovering that the application built on a not terribly old computer died when run on an older computer in the "shack." My specific case was for Windows but the same would apply to Linux. Added to cmake/modules/FindCPUflags.cmake +# direwolf versions thru 1.5 were only pre-built for 32 bit Windows targets. I will push this to github after testing it on a a very old computer. |
Fedora (and similar distributions that use RPM as the packaging system) uses a set of gcc compiler options that are optimized for a wide range of processors, with separate i686 and x86_64 compiler options. These appear to be: i686: -m32 -march=i686 -mtune=generic -msse2 -mfpmath=sse (effectively pentium 3 mobile and newer) x86_64: -m64 -mtune=generic (as recommended by GCC for processor-agnostic builds). All the 64-bit capable chips supported MMX, SSE, SSE2, SSE3 so these are included already. For my part, I think I can just use cmake -DENABLE_GENERIC=1 to disable these tests, and then it uses the build system-provided options above, plus the few optimization options specified in the top-level CMakeLists.txt (-ffast-math -ftree-vectorize and the warning switches). That's good enough for me. |
Fixed in f293186 . Default behavior is now like the Fedora standard for maximum compatibility. |
In this commit, CPU flag detection was added to the build process.
commit a1c16a6
Author: Davide Gerhard rainbow@irh.it
Date: Thu Aug 15 08:30:42 2019 +0200
When building on/for the target system, this is great. However when building in a Linux distribution environment such as Fedora, this introduces build-system dependencies on the runtime system. Specifically, a build system may support CPU instructions that are not supported on the runtime CPUs of every target.
When packaging for Fedora, I must patch out the line that invokes the FindCPUflags method. I would prefer to have a build-time define option to disable this. This allows the distribution to continue to choose the broad set of CPUs that it targets by setting the CFLAGS itself at build time.
The text was updated successfully, but these errors were encountered: