-
Notifications
You must be signed in to change notification settings - Fork 9.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
msvc debug: fix wrong lib name in generated pkgconfig file #4008
Merged
zdenop
merged 1 commit into
tesseract-ocr:main
from
autoantwort:fix-msvc-debug-pkgconfig-file
Jan 31, 2023
Merged
msvc debug: fix wrong lib name in generated pkgconfig file #4008
zdenop
merged 1 commit into
tesseract-ocr:main
from
autoantwort:fix-msvc-debug-pkgconfig-file
Jan 31, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
produce error: -- Setting policy CMP0091 to NEW
-- Selecting Windows SDK version 10.0.22621.0 to target Windows 10.0.19042.
-- Configuring tesseract version 5.3.0-18-g68025...
-- IPO / LTO supported
-- CMAKE_SYSTEM_PROCESSOR=<AMD64>
>> OpenMP_FOUND TRUE version: 2.0
-- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
--
-- General configuration for Tesseract 5.3.0-18-g68025
-- --------------------------------------------------------
-- Build type: Release 64 bits
-- Compiler: MSVC
-- Used standard: C++17
-- CXX compiler options: /DWIN32 /D_WINDOWS /W3 /GR /EHsc /utf-8 /MP -openmp:llvm /O2 /Ob2 /DNDEBUG /wd4244 /wd4305 /wd4267 /wd4251 /wd4275 /wd4005 /wd4068
-- Compile definitions = HAVE_AVX;HAVE_AVX2;HAVE_AVX512F;HAVE_FMA;HAVE_SSE4_1;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;CMAKE_BUILD;HAVE_CONFIG_H
-- Linker options: /machine:x64
-- Install directory: F:/win64
-- HAVE_AVX: ON
-- HAVE_AVX2: ON
-- HAVE_AVX512F: ON
-- HAVE_FMA: ON
-- HAVE_SSE4_1: ON
-- MARCH_NATIVE_OPT:
-- HAVE_NEON: FALSE
-- Link-time optimization: TRUE
-- --------------------------------------------------------
-- Build with sw [SW_BUILD]: OFF
-- Build with openmp support [OPENMP_BUILD]: ON
-- Build with libarchive support [HAVE_LIBARCHIVE]: ON
-- Build with libcurl support [HAVE_LIBCURL]: ON
-- Enable float for LSTM [FAST_FLOAT]: ON
-- Disable disable graphics (ScrollView) [GRAPHICS_DISABLED]: OFF
-- Disable the legacy OCR engine [DISABLED_LEGACY_ENGINE]: OFF
-- Build training tools [BUILD_TRAINING_TOOLS]: ON
-- Build tests [BUILD_TESTS]: OFF
-- Use system ICU Library [USE_SYSTEM_ICU]: OFF
-- Install tesseract configs [INSTALL_CONFIGS]: ON
-- --------------------------------------------------------
--
-- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
-- Found the following ICU libraries:
-- uc (required): F:/win64/lib/icuuc.lib
-- i18n (required): F:/win64/lib/icuin.lib
>> ICU_FOUND TRUE 67.1 F:/win64/lib/icuuc.lib;F:/win64/lib/icuin.lib F:/win64/include
-- Configuring done
CMake Error in CMakeLists.txt:
Evaluation file to be written multiple times with different content. This
is generally caused by the content evaluating the configuration type,
language, or location of object files:
F:/Projects/Community/tesseract/build.msvc_pr/tesseract.pc
CMake Error in CMakeLists.txt:
Evaluation file to be written multiple times with different content. This
is generally caused by the content evaluating the configuration type,
language, or location of object files:
F:/Projects/Community/tesseract/build.msvc_pr/tesseract.pc
CMake Error in CMakeLists.txt:
Evaluation file to be written multiple times with different content. This
is generally caused by the content evaluating the configuration type,
language, or location of object files:
F:/Projects/Community/tesseract/build.msvc_pr/tesseract.pc
CMake Error in CMakeLists.txt:
Evaluation file to be written multiple times with different content. This
is generally caused by the content evaluating the configuration type,
language, or location of object files:
F:/Projects/Community/tesseract/build.msvc_pr/tesseract.pc
CMake Error in CMakeLists.txt:
Evaluation file to be written multiple times with different content. This
is generally caused by the content evaluating the configuration type,
language, or location of object files:
F:/Projects/Community/tesseract/build.msvc_pr/tesseract.pc
CMake Error in CMakeLists.txt:
Evaluation file to be written multiple times with different content. This
is generally caused by the content evaluating the configuration type,
language, or location of object files:
F:/Projects/Community/tesseract/build.msvc_pr/tesseract.pc
CMake Error in CMakeLists.txt:
Evaluation file to be written multiple times with different content. This
is generally caused by the content evaluating the configuration type,
language, or location of object files:
F:/Projects/Community/tesseract/build.msvc_pr/tesseract.pc
CMake Error in CMakeLists.txt:
Evaluation file to be written multiple times with different content. This
is generally caused by the content evaluating the configuration type,
language, or location of object files:
F:/Projects/Community/tesseract/build.msvc_pr/tesseract.pc
CMake Error in CMakeLists.txt:
Evaluation file to be written multiple times with different content. This
is generally caused by the content evaluating the configuration type,
language, or location of object files:
F:/Projects/Community/tesseract/build.msvc_pr/tesseract.pc
-- Generating done
CMake Generate step failed. Build files cannot be regenerated correctly. |
autoantwort
force-pushed
the
fix-msvc-debug-pkgconfig-file
branch
from
January 31, 2023 12:42
68025aa
to
4305f44
Compare
This should be fixed now :) |
thanks. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #4007