You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NNEF fails when compiled in debug mode but compiles in release mode. \OpenVX-sample-impl\kernels\NNEF-Tools\parser\cpp\src\nnef.cpp : fatal error C1128: number of sections exceeded object file format limit: compile with /bigobj
Fix
Append /bigobj to ADD_C_FLAGS_DEBUG in OpenVX-sample-impl\cmake_utils\CMake_windows_tools.cmake set (ADD_C_FLAGS_DEBUG "-D _DEBUG /RTC1 /MTd /bigobj") #/MTd /Gm
and build will work fine
The text was updated successfully, but these errors were encountered:
NNEF fails when compiled in debug mode but compiles in release mode.
\OpenVX-sample-impl\kernels\NNEF-Tools\parser\cpp\src\nnef.cpp : fatal error C1128: number of sections exceeded object file format limit: compile with /bigobj
Fix
Append /bigobj to ADD_C_FLAGS_DEBUG in OpenVX-sample-impl\cmake_utils\CMake_windows_tools.cmake
set (ADD_C_FLAGS_DEBUG "-D _DEBUG /RTC1 /MTd /bigobj") #/MTd /Gm
and build will work fine
The text was updated successfully, but these errors were encountered: