Nicolas Winkler %!s(int64=5) %!d(string=hai) anos
pai
achega
59176fcbb5
Modificáronse 2 ficheiros con 3 adicións e 1 borrados
  1. 1 1
      Almond.pro
  2. 2 0
      libmandel/src/Mandel.cpp

+ 1 - 1
Almond.pro

@@ -78,7 +78,7 @@ else:unix:QMAKE_CXXFLAGS +=
 win32:QMAKE_LFLAGS +=  -openmp
 else:unix:QMAKE_LFLAGS+= -fopenmp -flto
 LIBS += -fopenmp
-unix:LIBS += -lm -latomic -lquadmath
+unix:LIBS += -lm -latomic
 
 win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../libs/ffmpeg-20200216-8578433-win64-dev/lib/ -lavcodec
 else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../libs/ffmpeg-20200216-8578433-win64-dev/lib/ -lavcodec

+ 2 - 0
libmandel/src/Mandel.cpp

@@ -119,12 +119,14 @@ MandelContext::MandelContext(void)
         cpuGenerators.insert({ GeneratorType::DOUBLE_SSE2, std::move(db) });
     }
 #elif defined(__aarch64__)
+    /*
     if (cpuInfo.hasNeon()) {
         auto fl = std::make_unique<CpuGenerator<float, mnd::ARM_NEON, true>>();
         auto db = std::make_unique<CpuGenerator<double, mnd::ARM_NEON, true>>();
         cpuGenerators.insert({ GeneratorType::FLOAT_NEON, std::move(fl) });
         cpuGenerators.insert({ GeneratorType::DOUBLE_NEON, std::move(db) });
     }
+    */
 #endif
     {
         auto fl = std::make_unique<CpuGenerator<float, mnd::NONE, true>>();