I use IDE Dev-C++ , built-in compiler: TDM GCC 4.7.1 64-bit release
Download boost_1_41_0 . Following the instructions I enter into the console

set PATH = D: \ Soft \ Dev-Cpp \ MinGW64 \ bin;% PATH% // My path to the MinGW64 folder
cd / dd: \ boost_1_41_0 // Unpacked archive with boost here
bootstrap.bat gcc

Then I see the following lines:

Building Boost.Jam build engine
"cl" is not an internal or external command, executable program or batch file.

How to fix and install boost?

  • one
    cl is a Visual C ++ compiler, you obviously have GCC ... - Harry
  • @Harry Well, I never used the cl command anywhere, I wrote bootstrap.bat gcc. And knocks an error about cl. What to do? - Order_By
  • So, you need to find cl references in the command file and replace them everywhere with gcc and check the correctness of the paths to the executable files. - Ildar Khairullin

0