Author: Bernhard M. Wiedemann Date: 2018-07-30 https://bugzilla.opensuse.org/show_bug.cgi?id=1100677 do not detect CPU features at compile time to make package build reproducible Forward ported to new build system by Stefan Seifert Date: 2021-05-24 Index: MoarVM-2021.05/build/probe.pm =================================================================== diff --git a/build/probe.pm b/build/probe.pm index 7c81e1a6f..8e94a592e 100644 --- a/build/probe.pm +++ b/build/probe.pm @@ -1022,12 +1022,6 @@ sub rdtscp { #endif int main(int argc, char **argv) { - unsigned int _tsc_aux; - unsigned int tscValue; - tscValue = __rdtscp(&_tsc_aux); - - if (tscValue > 1) - return EXIT_SUCCESS; return EXIT_FAILURE; } EOT