Date: Sun, 11 Feb 2018 08:16:12 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r461466 - head/graphics/colmap/files Message-ID: <201802110816.w1B8GCwq065049@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Sun Feb 11 08:16:12 2018 New Revision: 461466 URL: https://svnweb.freebsd.org/changeset/ports/461466 Log: graphics/colmap: unbreak OPENMP=off after r446135 src/ext/PBA/SparseBundleCPU.cpp:1208:7: error: non-constant-expression cannot be narrowed from type 'size_t' (aka 'unsigned long') to 'int' in initializer list [-Wc++11-narrowing] RUN_THREAD(ComputeProjection, threads[i], last - first, camera, point, ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/ext/PBA/SparseBundleCPU.cpp:933:3: note: expanded from macro 'RUN_THREAD' DECLEAR_THREAD_DATA(X, __VA_ARGS__); \ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/ext/PBA/SparseBundleCPU.cpp:908:30: note: expanded from macro 'DECLEAR_THREAD_DATA' X##_STRUCT<Float> tdata = {i, __VA_ARGS__}; \ ^ src/ext/PBA/SparseBundleCPU.cpp:1537:68: error: non-constant-expression cannot be narrowed from type 'size_t' (aka 'unsigned long') to 'int' in initializer list [-Wc++11-narrowing] intrinsic_fixed, radial_distortion, shuffle, jct, first); ^~~~~ src/ext/PBA/SparseBundleCPU.cpp:933:26: note: expanded from macro 'RUN_THREAD' DECLEAR_THREAD_DATA(X, __VA_ARGS__); \ ^~~~~~~~~~~ src/ext/PBA/SparseBundleCPU.cpp:908:33: note: expanded from macro 'DECLEAR_THREAD_DATA' X##_STRUCT<Float> tdata = {i, __VA_ARGS__}; \ ^~~~~~~~~~~ src/ext/PBA/SparseBundleCPU.cpp:1537:68: note: insert an explicit cast to silence this issue intrinsic_fixed, radial_distortion, shuffle, jct, first); ^~~~~ static_cast<int>( Modified: head/graphics/colmap/files/patch-no-sse (contents, props changed) Modified: head/graphics/colmap/files/patch-no-sse ============================================================================== --- head/graphics/colmap/files/patch-no-sse Sun Feb 11 08:15:51 2018 (r461465) +++ head/graphics/colmap/files/patch-no-sse Sun Feb 11 08:16:12 2018 (r461466) @@ -2,14 +2,13 @@ build: don't force SSE on i386 --- src/ext/PBA/CMakeLists.txt.orig 2017-06-15 14:32:01 UTC +++ src/ext/PBA/CMakeLists.txt -@@ -1,7 +1,3 @@ --if(NOT IS_MSVC) +@@ -1,5 +1,5 @@ + if(NOT IS_MSVC) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC -O3 -pthread -march=core2 -mfpmath=sse -Wno-c++11-narrowing") --endif() -- ++ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-c++11-narrowing") + endif() + if(CUDA_ENABLED) - # Fix for Ubuntu 16.04. - add_definitions("-D_FORCE_INLINES") --- src/ext/PBA/SparseBundleCPU.cpp.orig 2017-06-15 14:32:01 UTC +++ src/ext/PBA/SparseBundleCPU.cpp @@ -52,15 +52,16 @@ using std::max;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802110816.w1B8GCwq065049>