I just build it on a Ubuntu derived 64bit system. It compiles fine. Before testing further I did the same on my Debian 10 buster armhf Raspberry pi 4. Now it ends in error. Don't put too much effort in it. The rpi4 is my server, but I just wanted to test if it would compile there (and then test it via tightvnc).
clang++ -c -Ofast -std=c++11 -D USE_VC -D VECTORIZE -c -fno-math-errno -Wno-unused-value pv_no_rendering.cc -o pv_no_rendering.o clang++ -c -Ofast -std=c++11 -D USE_VC -D VECTORIZE -c -fno-math-errno -Wno-unused-value pv_initialize.cc -o pv_initialize.o clang++ -c -D PV_ARCH=PV_FALLBACK -Ofast -std=c++11 -D USE_VC -D VECTORIZE -c -fno-math-errno -Wno-unused-value pv_rendering.cc -o pv_fallback.o clang++ -c -mavx -D PV_ARCH=PV_AVX -Ofast -std=c++11 -D USE_VC -D VECTORIZE -c -fno-math-errno -Wno-unused-value pv_rendering.cc -o pv_avx.o clang: warning: argument unused during compilation: '-mavx' [-Wunused-command-line-argument] clang++ -c -mavx2 -D PV_ARCH=PV_AVX2 -Ofast -std=c++11 -D USE_VC -D VECTORIZE -c -fno-math-errno -Wno-unused-value pv_rendering.cc -o pv_avx2.o clang: warning: argument unused during compilation: '-mavx2' [-Wunused-command-line-argument] clang++ -c -mavx512f -D PV_ARCH=PV_AVX512f -Ofast -std=c++11 -D USE_VC -D VECTORIZE -c -fno-math-errno -Wno-unused-value pv_rendering.cc -o pv_avx512f.o clang: warning: argument unused during compilation: '-mavx512f' [-Wunused-command-line-argument] clang++ -c -D PV_ARCH=PV_FALLBACK -Ofast -std=c++11 -D USE_VC -D VECTORIZE -c -fno-math-errno -Wno-unused-value pv_combine.cc -o pv_cmb_fallback.o clang++ -c -mavx -D PV_ARCH=PV_AVX -Ofast -std=c++11 -D USE_VC -D VECTORIZE -c -fno-math-errno -Wno-unused-value pv_combine.cc -o pv_cmb_avx.o clang: warning: argument unused during compilation: '-mavx' [-Wunused-command-line-argument] clang++ -c -mavx2 -D PV_ARCH=PV_AVX2 -Ofast -std=c++11 -D USE_VC -D VECTORIZE -c -fno-math-errno -Wno-unused-value pv_combine.cc -o pv_cmb_avx2.o clang: warning: argument unused during compilation: '-mavx2' [-Wunused-command-line-argument] clang++ -c -mavx512f -D PV_ARCH=PV_AVX512f -Ofast -std=c++11 -D USE_VC -D VECTORIZE -c -fno-math-errno -Wno-unused-value pv_combine.cc -o pv_cmb_avx512f.o clang: warning: argument unused during compilation: '-mavx512f' [-Wunused-command-line-argument] clang++ -DUSE_TINYFILEDIALOGS -std=c++11 -c -o file_dialog.o file_dialog.cc clang++ -std=c++11 -o pv pv_no_rendering.o pv_initialize.o pv_fallback.o pv_avx.o pv_avx2.o pv_avx512f.o pv_cmb_fallback.o pv_cmb_avx.o pv_cmb_avx2.o pv_cmb_avx512f.o file_dialog.o -lpthread -lVc -lvigraimpex -lsfml-window -lsfml-graphics -lsfml-system -lexiv2 /usr/bin/ld: pv_no_rendering.o: in function `__cxx_global_var_init.375': pv_no_rendering.cc:(.text.startup[_ZN4Vc_16detail12RunCpuIdInitILi0EE3tmpE]+0x18): undefined reference to `Vc_1::CpuId::init()' /usr/bin/ld: pv_no_rendering.o: in function `_GLOBAL__sub_I_pv_no_rendering.cc': pv_no_rendering.cc:(.text.startup+0x6ec): undefined reference to `Vc_1::CpuId::s_processorFeatures7B' /usr/bin/ld: pv_no_rendering.cc:(.text.startup+0x6f8): undefined reference to `Vc_1::CpuId::s_processorFeaturesC' clang: error: linker command failed with exit code 1 (use -v to see invocation) make: *** [makefile:33: pv] Error 1 > -- A list of frequently asked questions is available at: http://wiki.panotools.org/Hugin_FAQ --- You received this message because you are subscribed to the Google Groups "hugin and other free panoramic software" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/hugin-ptx/CAGARPpuKqBHmkHOLu9byaG3xW2LBiD6mNsG7cE0Fy_9e36GMXg%40mail.gmail.com.
