Cmake error could not create named generator ninja

try your code and got problem at gradle console: CMake Error: Could not create named generator Android Gradle - Ninja FAILURE: Build failed with an exception. What went wrong: A problem occurred co...

For me the issue seems with the arguments list.

        externalNativeBuild {
            cmake {
                arguments "-DANDROID_PLATFORM=latest",
                        "-DENABLE_QRCODE=Off",
                        "-DENABLE_UPNP=Off",
                        "-DBUILD_SHARED_LIBS=1",
                        "-DANDROID_TOOLCHAIN=clang",
                        "-DSECP256K1_ECMULT_GEN_PRECISION=4",
                        "-DSECP256K1_ECMULT_WINDOW_SIZE=15",
                        "-DSECP256K1_USE_ASM=OFF",
                        "-DCMAKE_BUILD_TYPE=Release",
                        "-GCodeBlocks - Unix Makefiles",
                        "-DANDROID_STL=c++_shared"
                cppFlags "-std=c++17"
            }
        }

Gives me this error:

/home/robert/projects/myapp/CMakeLists.txt : C/C++ debug|arm64-v8a : Failed to activate protocol version: The combination of generator "CodeBlocks - Unix Makefiles" and extra generator "" is not supported.

It somehow adds a space after the command, probably to seperate the arguments, but that seems to screw things up.
Also when I try to qoute it:

"-G"CodeBlocks - Unix Makefiles"",

It doesn’t parse it right (it seems to take the quotes literal as part of the generator name):

/home/robert/projects/myapp/CMakeLists.txt : C/C++ debug|arm64-v8a : Failed to activate protocol version: Generator ""CodeBlocks - Unix Makefiles"" not supported.

Any workaround?

Gradle build window error:

Gradle Sync window error:

Ramesh sambu's user avatar

Ramesh sambu

3,5392 gold badges23 silver badges39 bronze badges

asked Jan 17, 2018 at 5:44

SimpleR's user avatar

Compatibility of CMake version might be an issue,
Old NDK (below 13b) is not compatible with the new CMake,
so, either update NDK or remove the new CMake (to force older CMake usage).

  • Check your System Setting and version listed under SDK Tools

    Go to Appearance & Behaviour -> System Settings -> Android SDK

  • Incompatible 3.10.2

  • Compatible 3.6.4111459

IDE SDK Tools Configuration

Top-Master's user avatar

Top-Master

6,6705 gold badges34 silver badges59 bronze badges

answered Jan 14, 2019 at 7:52

麦青焕's user avatar

麦青焕麦青焕

611 silver badge2 bronze badges

Содержание

  1. Visual Studio хочет Ninja Generator, хотя он у меня не установлен
  2. Cmake error :generator: Ninja #250
  3. Comments
  4. ` It showed an error in the ide which was as follows —
  5. Severity Code Description Project File Line Suppression State Error CMake Error: Error: generator : Ninja Does not match the generator used previously: Visual Studio 15 2017 Either remove the CMakeCache.txt file and CMakeFiles directory or choose a different binary directory. c:program files (x86)microsoft visual studio17professionalcommon7idecommonextensionsmicrosoftcmakeCMakebincmake.exe -G «Ninja» -DCMAKE_INSTALL_PREFIX:PATH=»C:UsersAvi-parvCMakeBuildsb55018-480c-1b33-a81d-1f236c8d7337installx64-Debug (default)» -DCMAKE_CXX_COMPILER=»C:/Program Files (x86)/Microsoft Visual Studio/2017/Professional/VC/Tools/MSVC/14.16.27023/bin/HostX64/x64/cl.exe» -DCMAKE_C_COMPILER=»C:/Program Files (x86)/Microsoft Visual Studio/2017/Professional/VC/Tools/MSVC/14.16.27023/bin/HostX64/x64/cl.exe» -DCMAKE_BUILD_TYPE=»Debug» -DCMAKE_MAKE_PROGRAM=»c:program files (x86)microsoft visualstudio17professionalcommon7idecommonextensionsmicrosoftcmakeNinjaninja.exe» «C:UsersAvi-parvExercismcpphello-world» returned with exit code: 1 CMake Error: Error: generator : Ninja Does not match the generator used previously: Visual Studio 15 2017 Either remove the CMakeCache.txt file and CMakeFiles directory or choose a different binary directory. C:UsersAvi-parvExercismcpphello-worldDoes not match the generator used previously
  6. In the terminal this error was shown —
  7. i have met a problem »’ CMake was unable to find a build program corresponding to «Ninja». »’ #108
  8. Comments
  9. Unable to find Ninja when using CMakePresets.json and clang-cl.exe #1897
  10. Comments
  11. Brief Issue Summary
  12. Expected:
  13. Apparent Behavior:
  14. CMake Tools Log
  15. Platform and Versions
  16. Other Notes/Information
  17. Cmake build not working #355
  18. Comments
  19. On Windows:
  20. On Linux or macOS:

Visual Studio хочет Ninja Generator, хотя он у меня не установлен

Я пытаюсь создать простой проект, чтобы немного изучить OpenGL. Вот мой CmakeList.txt:

Я отказался от кода Visual Studio для Visual Studio 2017 из-за проблемы с созданием файла команд компиляции в Windows. Для этого требовался генератор Ninja, и у меня было много проблем с тем, чтобы cmake его использовал.

Итак, теперь я cd в каталоге моего проекта и делаю cmake . :

Нигде нет упоминания о генераторе ниндзя. Однако, когда я открываю решение в VS2017 и перехожу к обновлению intellisense с помощью «generate», я получаю:

Когда я удаляю эти вещи, ошибка все равно возникает.

Что здесь происходит? Если мне все равно понадобится Ниндзя, может кто-нибудь сказать мне, что мне нужно делать?

При использовании «generate» установите правильный Генератор CMake. Не используйте генератор ниндзя, если у вас его нет.

@Tsyvarev Если я установлю Ninja, могу ли я использовать его с MSVC?

Visual Studio 2017 поставляется с ninja . На моем компьютере ниндзя находится в папке C:Program Files (x86)Microsoft Visual Studio2017CommunityCommon7IDECommonExtensionsMicrosoft‌​CMakeNinja . В случае вышеупомянутой ошибки: вы всегда должны начинать для нового каталога двоичного вывода, если вы переключаете генератор CMake.

Поэтому я отвечу на свой вопрос, потому что для возникновения этой ошибки потребовалось сразу несколько странных вещей.

  1. Я изначально установил Ninja, а затем удалил его до появления этой ошибки.
  2. Изначально я сделал файл Cmake через опцию VS ‘ Cmake Project , подозреваю, что в фоновом режиме использовался Ninja
  3. Я удалил ниндзя

В результате (3) автозавершение кода больше не работало должным образом. Чтобы исправить эту ситуацию:

  1. Удалите все ненужные файлы Cmake
  2. Откройте командную строку разработчика VS
  3. Запускаем cmake .

СЛЕДУЕТ по умолчанию использовать обычную процедуру MSBUILD и устранять проблему. Каким-то образом cmake -G Ninja . запускался в фоновом режиме четный, когда я генерировал файлы сборки из командной строки, отличной от VS. Чтобы исправить это, потребовалась командная строка VS.

Надеюсь, это кому-то поможет. Это меня смутило.

Источник

Cmake error :generator: Ninja #250

I opened hello-world folder using visual studio’s cmake in File>Open>Cmake. In the terminal i wrote -`

cmake -G «Visual Studio 15» -DBOOST_INCLUDEDIR:PATH=C:libboost_1_66_0.

` It showed an error in the ide which was as follows —

Severity Code Description Project File Line Suppression State
Error CMake Error: Error: generator : Ninja
Does not match the generator used previously: Visual Studio 15 2017
Either remove the CMakeCache.txt file and CMakeFiles directory or choose a different binary directory.
c:program files (x86)microsoft visual studio2017professionalcommon7idecommonextensionsmicrosoftcmakeCMakebincmake.exe -G «Ninja» -DCMAKE_INSTALL_PREFIX:PATH=»C:UsersAvi-parvCMakeBuilds54b55018-480c-1b33-a81d-1f236c8d7337installx64-Debug (default)» -DCMAKE_CXX_COMPILER=»C:/Program Files (x86)/Microsoft Visual Studio/2017/Professional/VC/Tools/MSVC/14.16.27023/bin/HostX64/x64/cl.exe» -DCMAKE_C_COMPILER=»C:/Program Files (x86)/Microsoft Visual Studio/2017/Professional/VC/Tools/MSVC/14.16.27023/bin/HostX64/x64/cl.exe» -DCMAKE_BUILD_TYPE=»Debug» -DCMAKE_MAKE_PROGRAM=»c:program files (x86)microsoft visualstudio2017professionalcommon7idecommonextensionsmicrosoftcmakeNinjaninja.exe» «C:UsersAvi-parvExercismcpphello-world» returned with exit code: 1
CMake Error: Error: generator : Ninja
Does not match the generator used previously: Visual Studio 15 2017
Either remove the CMakeCache.txt file and CMakeFiles directory or choose a different binary directory. C:UsersAvi-parvExercismcpphello-worldDoes not match the generator used previously

In the terminal this error was shown —

CMake Error at C:/Program Files (x86)/Microsoft Visual Studio/2017/Professional/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.12/Modules/FindBoost.cmake:2044 (message):
Unable to find the requested Boost libraries.

Boost version: 1.66.0

Boost include path: C:/lib/boost_1_66_0

Could not find the following static Boost libraries:

No Boost libraries were found. You may need to set BOOST_LIBRARYDIR to the
directory containing Boost libraries or BOOST_ROOT to the location of
Boost.
Call Stack (most recent call first):
CMakeLists.txt:14 (find_package)

— Configuring incomplete, errors occurred!
See also «C:/Users/Avi-parv/Exercism/cpp/hello-world/CMakeFiles/CMakeOutput.log».

C:UsersAvi-parvExercismcpphello-world>C:libboost_1_66_0
‘C:libboost_1_66_0’ is not recognized as an internal or external command,
operable program or batch file.

Someone please help

The text was updated successfully, but these errors were encountered:

Thanks for posting the error message. I don’t have a Visual Studio setup myself, unfortunately, so it is very helpful.

We recently changed the CMake generator to Ninja. It looks like Visual Studio is complaining about this:

The error message suggests a solution:

Does Visual Studio provide a way to clear the CMake cache? That may be the easiest path forward. If so, please try it, re-run CMake, and post the output.

You could also try to find and manually remove:

  • The file CMakeCache.txt
  • The directory CMakeFiles
    and then run CMake again.

There may be a second error related to finding Boost libraries, but we should probably fix the generator issue first.

Yes. I did manually remove cmakecache as suggested by the compiler. I even downloaded the folder once again but it still didnt work. I have already spent more than 7 hours trying to solve it

I had opened another issue in which I have mentioned everything in detail.
exercism/cli#839
Please check it out.

I looked more closely at the CMake generator changes that I mentioned previously — I don’t think they can have an effect on your system. There’s likely something else going on.

@parvpareek Unfortunately you’re hitting two known issues, both of which we’re working on fixing.

  1. Visual Studio instructions. The ones we have are very out of date. With VS 2017 (which you have) it will handle CMake files for you, you do not need to run CMake yourself. See https://docs.microsoft.com/en-us/cpp/build/cmake-projects-in-visual-studio
  2. Boost. We’re getting rid of it precisely because it is a nightmare to use on many platforms. The core exercises I will be fixing today, but it will take me at least a month to finish all the rest of the exercises. Exercism will save the version of each exercise you initially download from the website, so you’ll need to go on exercism.io to the Exercise page and click «Update exercise to the latest version» that will show up below the exercise description.

With a non-boost exercise all you need to do is:

  1. Download the exercise.
  2. Open Visual Studio 2017 or higher (With Visual C++ tools for CMake installed as described from the link).
  3. Open the exercise folder.
  4. Run «Build the solution.» and the test will execute with the build, output going to the build window. Since the test runs during the build, VS will say it is a build failure if one of the tests fail, and the test failure messages will be in the build output window.

Источник

i have met a problem »’ CMake was unable to find a build program corresponding to «Ninja». »’ #108

share:xcbuild chen-pc$ make
mkdir -p build
cmake -Bbuild -H. -G Ninja -DCMAKE_INSTALL_PREFIX=
CMake Error: CMake was unable to find a build program corresponding to «Ninja». CMAKE_MAKE_PROGRAM is not set. You probably need to select a different build tool.
CMake Error: Error required internal CMake variable not set, cmake may be not be built correctly.
Missing variable is:
CMAKE_C_COMPILER_ENV_VAR
CMake Error: Error required internal CMake variable not set, cmake may be not be built correctly.
Missing variable is:
CMAKE_C_COMPILER
CMake Error: Could not find cmake module file: /Users/chen-pc/xcbuild/build/CMakeFiles/3.2.2/CMakeCCompiler.cmake
CMake Error: Error required internal CMake variable not set, cmake may be not be built correctly.
Missing variable is:
CMAKE_CXX_COMPILER_ENV_VAR
CMake Error: Error required internal CMake variable not set, cmake may be not be built correctly.
Missing variable is:
CMAKE_CXX_COMPILER
CMake Error: Could not find cmake module file: /Users/chen-pc/xcbuild/build/CMakeFiles/3.2.2/CMakeCXXCompiler.cmake
CMake Error at CMakeLists.txt:10 (project):
No CMAKE_C_COMPILER could be found.

Tell CMake where to find the compiler by setting the CMake cache entry
CMAKE_C_COMPILER to the full path to the compiler, or to the compiler name
if it is in the PATH.

CMake Error at CMakeLists.txt:10 (project):
No CMAKE_CXX_COMPILER could be found.

Tell CMake where to find the compiler by setting the CMake cache entry
CMAKE_CXX_COMPILER to the full path to the compiler, or to the compiler
name if it is in the PATH.

CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage
CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage
— Configuring incomplete, errors occurred!

The text was updated successfully, but these errors were encountered:

Источник

Unable to find Ninja when using CMakePresets.json and clang-cl.exe #1897

Brief Issue Summary

When configuring without CMakePresets.json everything works fine but when I use the CMakePresets.json for vcpkg integration configuration fails with the error Ninja not found.

Ninja ,Cmake and Clang are installed on my system as part of Visual Studio 2019

Expected:

  1. Create CMakePresets.json
  2. Press F7 for configure
  3. Configuration should be generated

Apparent Behavior:

  1. Create CMakePresets.json
  2. Press F7 for configure
  3. Error is logged stating ninja is not found

CMake Tools Log

Platform and Versions

  • Operating System: Windows 10
  • CMake Version: 3.19.20122902-MSVC_2
  • VSCode Version: 1.56.2
  • CMake Tools Extension Version: 1.7.3
  • Compiler/Toolchain: Clang 11.0.0 (MSVC CLI) — amd64

Other Notes/Information

My CMakePreset.json, created by following the box2d-lite example

The text was updated successfully, but these errors were encountered:

@BLaZeKiLL, thank you for opening this report. This looks like a bug and we will investigate and fix it.
In the meantime, try to add in your preset environment variables the path to your ninja installation. It is very probably that this will unblock you. Please let us know if this idea works or not.

I added ninja to the preset path and got another error that rc command was not found (part of windows sdk) So I assumes that in case of CMakepresets.json the path variable from vs-dev-shell are not being loaded so I copied my PATH variable from vs-dev-shell
and this time I got this error

After searching I found this is something related to Clang not using the correct ABI tough couldn’t find a fix for my case

Anyway I started digging through the vscode-cmake-tools src code and found this in the driver.ts

In case of CMakePresets.json env var from the kit is not being loaded now I assume this is by design since the goal of CMakePresets.json is to give complete control and everything needs to be configured manually.

In any case my original goal was to just get vcpkg integration working and upon searching the docs of vscode-cmake-tools the only mention of vcpkg integration was under CMakePresets,json

I’ll try by passing the vcpkg toolchain file through extensions settings and see what happens..

Ok, thank you for trying these workarounds. I am sorry that nothing helped to unblock you. We will investigate and fix the issue.

In case of CMakePresets.json env var from the kit is not being loaded now I assume this is by design since the goal of CMakePresets.json is to give complete control and everything needs to be configured manually.

@BLaZeKiLL I disagree about that statement about design goal. The goal of CMakePresets is to add the ability to read Specific configuration from the file instead of calling cmake with the dozens of options.
On ‘normal’ systems (i.e. linux) you usually can have several compilers in PATH (i.e. /usr/bin/gcc, /usr/bin/clang, /usr/bin/clang-10), and ninja/make and others are always available in PATH.
Adding of additional compilers usually happens via CMake Toolchains, where you configure for example cross compilation environment, and specify some compilers which are not available on system (but not ninja or make)
The goal of CMakePresets is not to configure your whole build environment, but rather to set the tools you wish when configuring your project.
In other words: all paths must be considered where compilers and tools are installed.

So this would be the workaround, but it’s ugly.

Источник

Cmake build not working #355

various option tried to build the project and got the following errors:

C:SEAL-main (2)SEAL-main>cmake -S . -B build -G «Visual Studio 16 2019» -A Win32
CMake Error: Error: generator platform: Win32
Does not match the platform used previously:
Either remove the CMakeCache.txt file and CMakeFiles directory or choose a different binary director

C:SEAL-main (2)SEAL-main>cmake -S . -B build -G «Visual Studio 16 2019» -A x64
CMake Error: Error: generator platform: x64
Does not match the platform used previously:
Either remove the CMakeCache.txt file and CMakeFiles directory or choose a different binary directory.

any possible solutions?

The text was updated successfully, but these errors were encountered:

  1. Are you building a clean clone? Follow the printed recommendation «Either remove the CMakeCache.txt file and CMakeFiles directory or choose a different binary directory.» Remove out directory or any directory generated by CMake. git clean -ffdx also works to clean up the repository.
  2. Make sure that the command prompt is win32 when you build for win32, and win64 when you build for win64.

I’m unable to build or run. seal.. I’ve used all the steps mentioned
cmake -S . -B build
cmake —build build
sudo cmake —install build

can you please help me to what I need to do next so that I could start developing my use case using HE

First of all, in SEAL root directory, run git clean -ffdx .

On Windows:

Method 1: Update Visual Studio 2019 to the latest version. «Visual Studio 2019 provides support for CMake-based projects. You can select the menu option File / Open / Folder. and navigate to the folder where the Microsoft SEAL repository is located. After opening the folder, Visual Studio will detect that this is a CMake-based project and will enable the menu command Project / CMake settings for SEAL. This will open the CMake settings editor that provides a user interface where you can create different configurations and set different CMake options.»

Method 2 (x64 only): Open «x64 Native Tools Command Prompt for Visual Studio 2019», then from the SEAL root directory:

Method 3 (x86 only): Open «x86 Native Tools Command Prompt for Visual Studio 2019», then from the SEAL root directory, run:

If one method is incomplete, you have to run git clean -ffdx again before switching to a different method.

On Linux or macOS:

From the SEAL root directory, run:

If you still cannot build SEAL, copy and paste all command line output (or Visual Studio output) here.

Источник

Я хочу построить этот проект:https://github.com/xmrig/xmrig в соответствии с инструкциями здесь: https://github.com/xmrig/xmrig/wiki/Windows-Build , но когда я пытаюсь запустить это:

C:UsersdminDocumentsxmrig-2.3.1build>cmake .. -G "Visual Studio 15 2017 Win
64"-T v140_xp -DCMAKE_BUILD_TYPE=Release  -DUV_INCLUDE_DIR=C:Program Fileslibu
vinclude -DUV_LIBRARY=C:Program FileslibuvReleaseliblibuv.lib
CMake Error: Could not create named generator Visual Studio 15 2017 Win64-T

Я получаю эти ошибки:

CMake Error: Could not create named generator Visual Studio 15 2017 Win64-T

Generators
Visual Studio 15 2017 [arch] = Generates Visual Studio 2017 project files.
Optional [arch] can be "Win64" or "ARM".
Visual Studio 14 2015 [arch] = Generates Visual Studio 2015 project files.
Optional [arch] can be "Win64" or "ARM".
Visual Studio 12 2013 [arch] = Generates Visual Studio 2013 project files.
Optional [arch] can be "Win64" or "ARM".
Visual Studio 11 2012 [arch] = Generates Visual Studio 2012 project files.
Optional [arch] can be "Win64" or "ARM".
Visual Studio 10 2010 [arch] = Generates Visual Studio 2010 project files.
Optional [arch] can be "Win64" or "IA64".
Visual Studio 9 2008 [arch]  = Generates Visual Studio 2008 project files.
Optional [arch] can be "Win64" or "IA64".
Visual Studio 8 2005 [arch]  = Deprecated.  Generates Visual Studio 2005
project files.  Optional [arch] can be
"Win64".
Borland Makefiles            = Generates Borland makefiles.
NMake Makefiles              = Generates NMake makefiles.
NMake Makefiles JOM          = Generates JOM makefiles.
Green Hills MULTI            = Generates Green Hills MULTI files
(experimental, work-in-progress).
MSYS Makefiles               = Generates MSYS makefiles.
MinGW Makefiles              = Generates a make file for use with
mingw32-make.
Unix Makefiles               = Generates standard UNIX makefiles.
Ninja                        = Generates build.ninja files.
Watcom WMake                 = Generates Watcom WMake makefiles.
CodeBlocks - MinGW Makefiles = Generates CodeBlocks project files.
CodeBlocks - NMake Makefiles = Generates CodeBlocks project files.
CodeBlocks - NMake Makefiles JOM
= Generates CodeBlocks project files.
CodeBlocks - Ninja           = Generates CodeBlocks project files.
CodeBlocks - Unix Makefiles  = Generates CodeBlocks project files.
CodeLite - MinGW Makefiles   = Generates CodeLite project files.
CodeLite - NMake Makefiles   = Generates CodeLite project files.
CodeLite - Ninja             = Generates CodeLite project files.
CodeLite - Unix Makefiles    = Generates CodeLite project files.
Sublime Text 2 - MinGW Makefiles
= Generates Sublime Text 2 project files.
Sublime Text 2 - NMake Makefiles
= Generates Sublime Text 2 project files.
Sublime Text 2 - Ninja       = Generates Sublime Text 2 project files.
Sublime Text 2 - Unix Makefiles
= Generates Sublime Text 2 project files.
Kate - MinGW Makefiles       = Generates Kate project files.
Kate - NMake Makefiles       = Generates Kate project files.
Kate - Ninja                 = Generates Kate project files.
Kate - Unix Makefiles        = Generates Kate project files.
Eclipse CDT4 - NMake Makefiles
= Generates Eclipse CDT 4.0 project files.
Eclipse CDT4 - MinGW Makefiles
= Generates Eclipse CDT 4.0 project files.
Eclipse CDT4 - Ninja         = Generates Eclipse CDT 4.0 project files.
Eclipse CDT4 - Unix Makefiles= Generates Eclipse CDT 4.0 project files.

Как я могу решить это?

PS: это не дублируется, так как нет ответа CMake Ошибка: не удалось создать именованный генератор Visual Studio 14 2015 win64

Спасибо

3

Решение

Глядя на сообщение об ошибке, он говорит, что нет:

Visual Studio 15 2017 Win64-T

Как вы можете заметить, cmake проанализировал вашу команду слияния Win64 «и параметр -T. В командной строке вы вставили:

между Win64 «и -T нет места.

Добавьте один и снова введите команду.

1

Другие решения

Других решений пока нет …

Содеожимое фала CMakeOutput.log (по частям):

CMakeOutput.log(часть 1):
The system is: MSYS — 3.0.7-338.x86_64 — x86_64
Compiling the C compiler identification source file «CMakeCCompilerId.c» succeeded.
Compiler: /usr/bin/cc.exe
Build flags:
Id flags:

The output was:
0

Compilation of the C compiler identification source «CMakeCCompilerId.c» produced «a.exe»

The C compiler identification is GNU, found in «/g/freeglut-3.2.1/CMakeFiles/3.15.5/CompilerIdC/a.exe»

Compiling the CXX compiler identification source file «CMakeCXXCompilerId.cpp» succeeded.
Compiler: /usr/bin/c++.exe
Build flags:
Id flags:

The output was:
0

Compilation of the CXX compiler identification source «CMakeCXXCompilerId.cpp» produced «a.exe»

The CXX compiler identification is GNU, found in «/g/freeglut-3.2.1/CMakeFiles/3.15.5/CompilerIdCXX/a.exe»

Determining if the C compiler works passed with the following output:
Change Dir: /g/freeglut-3.2.1/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make.exe cmTC_503de/fast && /usr/bin/make -f CMakeFiles/cmTC_503de.dir/build.make CMakeFiles/cmTC_503de.dir/build
make[1]: вход в каталог «/g/freeglut-3.2.1/CMakeFiles/CMakeTmp»
Building C object CMakeFiles/cmTC_503de.dir/testCCompiler.c.o
/usr/bin/cc.exe -o CMakeFiles/cmTC_503de.dir/testCCompiler.c.o -c /g/freeglut-3.2.1/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_503de.exe
/usr/bin/cmake.exe -E cmake_link_script CMakeFiles/cmTC_503de.dir/link.txt —verbose=1
/usr/bin/cc.exe -Wl,—enable-auto-import CMakeFiles/cmTC_503de.dir/testCCompiler.c.o -o cmTC_503de.exe -Wl,—out-implib,libcmTC_503de.dll.a -Wl,—major-image-version,0,—minor-image-version,0
make[1]: выход из каталога «/g/freeglut-3.2.1/CMakeFiles/CMakeTmp»

Detecting C compiler ABI info compiled with the following output:
Change Dir: /g/freeglut-3.2.1/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/make.exe cmTC_71c7e/fast && /usr/bin/make -f CMakeFiles/cmTC_71c7e.dir/build.make CMakeFiles/cmTC_71c7e.dir/build
make[1]: Entering directory ‘/g/freeglut-3.2.1/CMakeFiles/CMakeTmp’
Building C object CMakeFiles/cmTC_71c7e.dir/CMakeCCompilerABI.c.o
/usr/bin/cc.exe -v -o CMakeFiles/cmTC_71c7e.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.15.5/Modules/CMakeCCompilerABI.c
Using built-in specs.
COLLECT_GCC=/usr/bin/cc
Target: x86_64-pc-msys
Configured with: /msys_scripts/gcc/src/gcc-9.1.0/configure —build=x86_64-pc-msys —prefix=/usr —libexecdir=/usr/lib —enable-bootstrap —enable-shared —enable-shared-libgcc —enable-static —enable-version-specific-runtime-libs —with-arch=x86-64 —with-tune=generic —disable-multilib —enable-__cxa_atexit —with-dwarf2 —enable-languages=c,c++,fortran,lto —enable-graphite —enable-threads=posix —enable-libatomic —enable-libgomp —enable-libitm —enable-libquadmath —enable-libquadmath-support —disable-libssp —disable-win32-registry —disable-symvers —with-gnu-ld —with-gnu-as —disable-isl-version-check —enable-checking=release —without-libiconv-prefix —without-libintl-prefix —with-system-zlib —enable-linker-build-id —with-default-libstdcxx-abi=gcc4-compatible —enable-libstdcxx-filesystem-ts
Thread model: posix
gcc version 9.1.0 (GCC)
COLLECT_GCC_OPTIONS=’-v’ ‘-o’ ‘CMakeFiles/cmTC_71c7e.dir/CMakeCCompilerABI.c.o’ ‘-c’ ‘-mtune=generic’ ‘-march=x86-64’
/usr/lib/gcc/x86_64-pc-msys/9.1.0/cc1.exe -quiet -v -idirafter /usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib/../include/w32api -idirafter /usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib/../lib/../../include/w32api /usr/share/cmake-3.15.5/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_71c7e.dir/CMakeCCompilerABI.c.o -version -o /tmp/ccMAQSme.s
GNU C17 (GCC) version 9.1.0 (x86_64-pc-msys)
compiled by GNU C version 9.1.0, GMP version 6.1.2, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.21-GMP

GGC heuristics: —param ggc-min-expand=100 —param ggc-min-heapsize=131072
ignoring nonexistent directory «/usr/local/include»
ignoring nonexistent directory «/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/include»
ignoring duplicate directory «/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib/../lib/../../include/w32api»
#include «…» search starts here:
#include <…> search starts here:
/usr/lib/gcc/x86_64-pc-msys/9.1.0/include
/usr/lib/gcc/x86_64-pc-msys/9.1.0/include-fixed
/usr/include
/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib/../include/w32api
End of search list.
GNU C17 (GCC) version 9.1.0 (x86_64-pc-msys)
compiled by GNU C version 9.1.0, GMP version 6.1.2, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.21-GMP

GGC heuristics: —param ggc-min-expand=100 —param ggc-min-heapsize=131072
Compiler executable checksum: 7f510fbb3faa166a40407e74feefff38
COLLECT_GCC_OPTIONS=’-v’ ‘-o’ ‘CMakeFiles/cmTC_71c7e.dir/CMakeCCompilerABI.c.o’ ‘-c’ ‘-mtune=generic’ ‘-march=x86-64’
/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/bin/as.exe -v -o CMakeFiles/cmTC_71c7e.dir/CMakeCCompilerABI.c.o /tmp/ccMAQSme.s
GNU assembler version 2.30 (x86_64-pc-msys) using BFD version (GNU Binutils) 2.30
COMPILER_PATH=/usr/lib/gcc/x86_64-pc-msys/9.1.0/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/:/usr/lib/gcc/x86_64-pc-msys/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/:/usr/lib/gcc/x86_64-pc-msys/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/bin/
LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-msys/9.1.0/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib/../lib/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../:/usr/lib/
COLLECT_GCC_OPTIONS=’-v’ ‘-o’ ‘CMakeFiles/cmTC_71c7e.dir/CMakeCCompilerABI.c.o’ ‘-c’ ‘-mtune=generic’ ‘-march=x86-64’
Linking C executable cmTC_71c7e.exe
/usr/bin/cmake.exe -E cmake_link_script CMakeFiles/cmTC_71c7e.dir/link.txt —verbose=1
/usr/bin/cc.exe -Wl,—enable-auto-import -v CMakeFiles/cmTC_71c7e.dir/CMakeCCompilerABI.c.o -o cmTC_71c7e.exe -Wl,—out-implib,libcmTC_71c7e.dll.a -Wl,—major-image-version,0,—minor-image-version,0
Using built-in specs.
COLLECT_GCC=/usr/bin/cc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-msys/9.1.0/lto-wrapper.exe
Target: x86_64-pc-msys
Configured with: /msys_scripts/gcc/src/gcc-9.1.0/configure —build=x86_64-pc-msys —prefix=/usr —libexecdir=/usr/lib —enable-bootstrap —enable-shared —enable-shared-libgcc —enable-static —enable-version-specific-runtime-libs —with-arch=x86-64 —with-tune=generic —disable-multilib —enable-__cxa_atexit —with-dwarf2 —enable-languages=c,c++,fortran,lto —enable-graphite —enable-threads=posix —enable-libatomic —enable-libgomp —enable-libitm —enable-libquadmath —enable-libquadmath-support —disable-libssp —disable-win32-registry —disable-symvers —with-gnu-ld —with-gnu-as —disable-isl-version-check —enable-checking=release —without-libiconv-prefix —without-libintl-prefix —with-system-zlib —enable-linker-build-id —with-default-libstdcxx-abi=gcc4-compatible —enable-libstdcxx-filesystem-ts
Thread model: posix
gcc version 9.1.0 (GCC)
COMPILER_PATH=/usr/lib/gcc/x86_64-pc-msys/9.1.0/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/:/usr/lib/gcc/x86_64-pc-msys/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/:/usr/lib/gcc/x86_64-pc-msys/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/bin/
LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-msys/9.1.0/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib/../lib/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../:/usr/lib/
COLLECT_GCC_OPTIONS=’-v’ ‘-o’ ‘cmTC_71c7e.exe’ ‘-mtune=generic’ ‘-march=x86-64’
/usr/lib/gcc/x86_64-pc-msys/9.1.0/collect2.exe -plugin /usr/lib/gcc/x86_64-pc-msys/9.1.0/msys-lto_plugin.dll -plugin-opt=/usr/lib/gcc/x86_64-pc-msys/9.1.0/lto-wrapper.exe -plugin-opt=-fresolution=/tmp/ccVCUNou.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmsys-2.0 -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc —build-id -m i386pep —wrap _Znwm —wrap _Znam —wrap _ZdlPv —wrap _ZdaPv —wrap _ZnwmRKSt9nothrow_t —wrap _ZnamRKSt9nothrow_t —wrap _ZdlPvRKSt9nothrow_t —wrap _ZdaPvRKSt9nothrow_t -Bdynamic —dll-search-prefix=msys- —tsaware -o cmTC_71c7e.exe /usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib/crt0.o /usr/lib/gcc/x86_64-pc-msys/9.1.0/crtbegin.o -L/usr/lib/gcc/x86_64-pc-msys/9.1.0 -L/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib/../lib -L/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib -L/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../.. —enable-auto-import CMakeFiles/cmTC_71c7e.dir/CMakeCCompilerABI.c.o —out-implib libcmTC_71c7e.dll.a —major-image-version 0 —minor-image-version 0 -lgcc_s -lgcc -lmsys-2.0 -ladvapi32 -lshell32 -luser32 -lkernel32 -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib/default-manifest.o /usr/lib/gcc/x86_64-pc-msys/9.1.0/crtend.o
COLLECT_GCC_OPTIONS=’-v’ ‘-o’ ‘cmTC_71c7e.exe’ ‘-mtune=generic’ ‘-march=x86-64’
make[1]: Leaving directory ‘/g/freeglut-3.2.1/CMakeFiles/CMakeTmp’

Добавлено через 46 секунд
Содеожимое фала CMakeOutput.log (по частям):

CMakeOutput.log(часть 2):
Parsed C implicit include dir info from above output: rv=done
found start of include info
found start of implicit include info
add: [/usr/lib/gcc/x86_64-pc-msys/9.1.0/include]
add: [/usr/lib/gcc/x86_64-pc-msys/9.1.0/include-fixed]
add: [/usr/include]
add: [/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib/../include/w32api]
end of search list found
collapse include dir [/usr/lib/gcc/x86_64-pc-msys/9.1.0/include] ==> [/usr/lib/gcc/x86_64-pc-msys/9.1.0/include]
collapse include dir [/usr/lib/gcc/x86_64-pc-msys/9.1.0/include-fixed] ==> [/usr/lib/gcc/x86_64-pc-msys/9.1.0/include-fixed]
collapse include dir [/usr/include] ==> [/usr/include]
collapse include dir [/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib/../include/w32api] ==> [/usr/include/w32api]
implicit include dirs: [/usr/lib/gcc/x86_64-pc-msys/9.1.0/include;/usr/lib/gcc/x86_64-pc-msys/9.1.0/include-fixed;/usr/include;/usr/include/w32api]

Parsed C implicit link information from above output:
link line regex: [^( *|.*[/])(ld.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/]+-)?ld|collect2)[^/]*( |$)]
ignore line: [Change Dir: /g/freeglut-3.2.1/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command(s):/usr/bin/make.exe cmTC_71c7e/fast && /usr/bin/make -f CMakeFiles/cmTC_71c7e.dir/build.make CMakeFiles/cmTC_71c7e.dir/build]
ignore line: [make[1]: Entering directory ‘/g/freeglut-3.2.1/CMakeFiles/CMakeTmp’]
ignore line: [Building C object CMakeFiles/cmTC_71c7e.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/cc.exe -v -o CMakeFiles/cmTC_71c7e.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.15.5/Modules/CMakeCCompilerABI.c]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/cc]
ignore line: [Target: x86_64-pc-msys]
ignore line: [Configured with: /msys_scripts/gcc/src/gcc-9.1.0/configure —build=x86_64-pc-msys —prefix=/usr —libexecdir=/usr/lib —enable-bootstrap —enable-shared —enable-shared-libgcc —enable-static —enable-version-specific-runtime-libs —with-arch=x86-64 —with-tune=generic —disable-multilib —enable-__cxa_atexit —with-dwarf2 —enable-languages=c,c++,fortran,lto —enable-graphite —enable-threads=posix —enable-libatomic —enable-libgomp —enable-libitm —enable-libquadmath —enable-libquadmath-support —disable-libssp —disable-win32-registry —disable-symvers —with-gnu-ld —with-gnu-as —disable-isl-version-check —enable-checking=release —without-libiconv-prefix —without-libintl-prefix —with-system-zlib —enable-linker-build-id —with-default-libstdcxx-abi=gcc4-compatible —enable-libstdcxx-filesystem-ts]
ignore line: [Thread model: posix]
ignore line: [gcc version 9.1.0 (GCC) ]
ignore line: [COLLECT_GCC_OPTIONS=’-v’ ‘-o’ ‘CMakeFiles/cmTC_71c7e.dir/CMakeCCompilerABI.c.o’ ‘-c’ ‘-mtune=generic’ ‘-march=x86-64’]
ignore line: [ /usr/lib/gcc/x86_64-pc-msys/9.1.0/cc1.exe -quiet -v -idirafter /usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib/../include/w32api -idirafter /usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib/../lib/../../include/w32api /usr/share/cmake-3.15.5/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_71c7e.dir/CMakeCCompilerABI.c.o -version -o /tmp/ccMAQSme.s]
ignore line: [GNU C17 (GCC) version 9.1.0 (x86_64-pc-msys)]
ignore line: [ compiled by GNU C version 9.1.0, GMP version 6.1.2, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.21-GMP]
ignore line: []
ignore line: [GGC heuristics: —param ggc-min-expand=100 —param ggc-min-heapsize=131072]
ignore line: [ignoring nonexistent directory «/usr/local/include»]
ignore line: [ignoring nonexistent directory «/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/include»]
ignore line: [ignoring duplicate directory «/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib/../lib/../../include/w32api»]
ignore line: [#include «…» search starts here:]
ignore line: [#include <…> search starts here:]
ignore line: [ /usr/lib/gcc/x86_64-pc-msys/9.1.0/include]
ignore line: [ /usr/lib/gcc/x86_64-pc-msys/9.1.0/include-fixed]
ignore line: [ /usr/include]
ignore line: [ /usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib/../include/w32api]
ignore line: [End of search list.]
ignore line: [GNU C17 (GCC) version 9.1.0 (x86_64-pc-msys)]
ignore line: [ compiled by GNU C version 9.1.0, GMP version 6.1.2, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.21-GMP]
ignore line: []
ignore line: [GGC heuristics: —param ggc-min-expand=100 —param ggc-min-heapsize=131072]
ignore line: [Compiler executable checksum: 7f510fbb3faa166a40407e74feefff38]
ignore line: [COLLECT_GCC_OPTIONS=’-v’ ‘-o’ ‘CMakeFiles/cmTC_71c7e.dir/CMakeCCompilerABI.c.o’ ‘-c’ ‘-mtune=generic’ ‘-march=x86-64’]
ignore line: [ /usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/bin/as.exe -v -o CMakeFiles/cmTC_71c7e.dir/CMakeCCompilerABI.c.o /tmp/ccMAQSme.s]
ignore line: [GNU assembler version 2.30 (x86_64-pc-msys) using BFD version (GNU Binutils) 2.30]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-msys/9.1.0/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/:/usr/lib/gcc/x86_64-pc-msys/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/:/usr/lib/gcc/x86_64-pc-msys/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/bin/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-msys/9.1.0/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib/../lib/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS=’-v’ ‘-o’ ‘CMakeFiles/cmTC_71c7e.dir/CMakeCCompilerABI.c.o’ ‘-c’ ‘-mtune=generic’ ‘-march=x86-64’]
ignore line: [Linking C executable cmTC_71c7e.exe]
ignore line: [/usr/bin/cmake.exe -E cmake_link_script CMakeFiles/cmTC_71c7e.dir/link.txt —verbose=1]
ignore line: [/usr/bin/cc.exe -Wl,—enable-auto-import -v CMakeFiles/cmTC_71c7e.dir/CMakeCCompilerABI.c.o -o cmTC_71c7e.exe -Wl,—out-implib,libcmTC_71c7e.dll.a -Wl,—major-image-version,0,—minor-image-version,0 ]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/cc]
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-msys/9.1.0/lto-wrapper.exe]
ignore line: [Target: x86_64-pc-msys]
ignore line: [Configured with: /msys_scripts/gcc/src/gcc-9.1.0/configure —build=x86_64-pc-msys —prefix=/usr —libexecdir=/usr/lib —enable-bootstrap —enable-shared —enable-shared-libgcc —enable-static —enable-version-specific-runtime-libs —with-arch=x86-64 —with-tune=generic —disable-multilib —enable-__cxa_atexit —with-dwarf2 —enable-languages=c,c++,fortran,lto —enable-graphite —enable-threads=posix —enable-libatomic —enable-libgomp —enable-libitm —enable-libquadmath —enable-libquadmath-support —disable-libssp —disable-win32-registry —disable-symvers —with-gnu-ld —with-gnu-as —disable-isl-version-check —enable-checking=release —without-libiconv-prefix —without-libintl-prefix —with-system-zlib —enable-linker-build-id —with-default-libstdcxx-abi=gcc4-compatible —enable-libstdcxx-filesystem-ts]
ignore line: [Thread model: posix]
ignore line: [gcc version 9.1.0 (GCC) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-msys/9.1.0/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/:/usr/lib/gcc/x86_64-pc-msys/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/:/usr/lib/gcc/x86_64-pc-msys/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/bin/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-msys/9.1.0/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib/../lib/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib/:/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS=’-v’ ‘-o’ ‘cmTC_71c7e.exe’ ‘-mtune=generic’ ‘-march=x86-64’]
link line: [ /usr/lib/gcc/x86_64-pc-msys/9.1.0/collect2.exe -plugin /usr/lib/gcc/x86_64-pc-msys/9.1.0/msys-lto_plugin.dll -plugin-opt=/usr/lib/gcc/x86_64-pc-msys/9.1.0/lto-wrapper.exe -plugin-opt=-fresolution=/tmp/ccVCUNou.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmsys-2.0 -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc —build-id -m i386pep —wrap _Znwm —wrap _Znam —wrap _ZdlPv —wrap _ZdaPv —wrap _ZnwmRKSt9nothrow_t —wrap _ZnamRKSt9nothrow_t —wrap _ZdlPvRKSt9nothrow_t —wrap _ZdaPvRKSt9nothrow_t -Bdynamic —dll-search-prefix=msys- —tsaware -o cmTC_71c7e.exe /usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib/crt0.o /usr/lib/gcc/x86_64-pc-msys/9.1.0/crtbegin.o -L/usr/lib/gcc/x86_64-pc-msys/9.1.0 -L/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib/../lib -L/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib -L/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../.. —enable-auto-import CMakeFiles/cmTC_71c7e.dir/CMakeCCompilerABI.c.o —out-implib libcmTC_71c7e.dll.a —major-image-version 0 —minor-image-version 0 -lgcc_s -lgcc -lmsys-2.0 -ladvapi32 -lshell32 -luser32 -lkernel32 -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib/default-manifest.o /usr/lib/gcc/x86_64-pc-msys/9.1.0/crtend.o]
arg [/usr/lib/gcc/x86_64-pc-msys/9.1.0/collect2.exe] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-msys/9.1.0/msys-lto_plugin.dll] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-msys/9.1.0/lto-wrapper.exe] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccVCUNou.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lmsys-2.0] ==> ignore
arg [-plugin-opt=-pass-through=-ladvapi32] ==> ignore
arg [-plugin-opt=-pass-through=-lshell32] ==> ignore
arg [-plugin-opt=-pass-through=-luser32] ==> ignore
arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [—build-id] ==> ignore
arg [-m] ==> ignore
arg [i386pep] ==> ignore
arg [—wrap] ==> ignore
arg [_Znwm] ==> ignore
arg [—wrap] ==> ignore
arg [_Znam] ==> ignore
arg [—wrap] ==> ignore
arg [_ZdlPv] ==> ignore
arg [—wrap] ==> ignore
arg [_ZdaPv] ==> ignore
arg [—wrap] ==> ignore
arg [_ZnwmRKSt9nothrow_t] ==> ignore
arg [—wrap] ==> ignore
arg [_ZnamRKSt9nothrow_t] ==> ignore
arg [—wrap] ==> ignore
arg [_ZdlPvRKSt9nothrow_t] ==> ignore
arg [—wrap] ==> ignore
arg [_ZdaPvRKSt9nothrow_t] ==> ignore
arg [-Bdynamic] ==> ignore
arg [—dll-search-prefix=msys-] ==> ignore
arg [—tsaware] ==> ignore
arg [-o] ==> ignore
arg [cmTC_71c7e.exe] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib/crt0.o] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-msys/9.1.0/crtbegin.o] ==> ignore
arg [-L/usr/lib/gcc/x86_64-pc-msys/9.1.0] ==> dir [/usr/lib/gcc/x86_64-pc-msys/9.1.0]
arg [-L/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib/../lib] ==> dir [/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib/../lib]
arg [-L/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib]
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
arg [-L/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib] ==> dir [/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib]
arg [-L/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../..]
arg [—enable-auto-import] ==> ignore
arg [CMakeFiles/cmTC_71c7e.dir/CMakeCCompilerABI.c.o] ==> ignore
arg [—out-implib] ==> ignore
arg [libcmTC_71c7e.dll.a] ==> ignore
arg [—major-image-version] ==> ignore
arg [0] ==> ignore
arg [—minor-image-version] ==> ignore
arg [0] ==> ignore
arg [-lgcc_s] ==> lib [gcc_s]
arg [-lgcc] ==> lib [gcc]
arg [-lmsys-2.0] ==> lib [msys-2.0]
arg [-ladvapi32] ==> lib [advapi32]
arg [-lshell32] ==> lib [shell32]
arg [-luser32] ==> lib [user32]
arg [-lkernel32] ==> lib [kernel32]
arg [-lgcc_s] ==> lib [gcc_s]
arg [-lgcc] ==> lib [gcc]
arg [/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib/default-manifest.o] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-msys/9.1.0/crtend.o] ==> ignore
collapse library dir [/usr/lib/gcc/x86_64-pc-msys/9.1.0] ==> [/usr/lib/gcc/x86_64-pc-msys/9.1.0]
collapse library dir [/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib/../lib] ==> [/usr/x86_64-pc-msys/lib]
collapse library dir [/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../lib] ==> [/usr/lib]
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
collapse library dir [/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../../../x86_64-pc-msys/lib] ==> [/usr/x86_64-pc-msys/lib]
collapse library dir [/usr/lib/gcc/x86_64-pc-msys/9.1.0/../../..] ==> [/usr/lib]
implicit libs: [gcc_s;gcc;msys-2.0;advapi32;shell32;user32;kernel32;gcc_s;gcc]
implicit dirs: [/usr/lib/gcc/x86_64-pc-msys/9.1.0;/usr/x86_64-pc-msys/lib;/usr/lib]
implicit fwks: []

Понравилась статья? Поделить с друзьями:
  • Cmake error cmake c compiler not set after enablelanguage
  • Cmake error cannot open file for write
  • Cmake error cannot determine link language for target
  • Cmake error at cmakelists txt 2 project
  • Cmake error 127