File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ cd build
5353cmake ..
5454cmake --build . --config Release
5555</code_box >
56- Note that you need to have a C++11 compiler installed on your system. There are free C++11 compilers
56+ Note that you need to have a C++14 compiler installed on your system. There are free C++14 compilers
5757for most operating systems. For example, Visual Studio is free on Windows and GCC is free and
5858works well on Mac OS X and Linux systems. If you have multiple compilers/IDEs installed then you can
5959tell CMake which one you want it to use via the -G option.
@@ -119,7 +119,7 @@ tell CMake which one you want it to use via the -G option.
119119 <h3 >Compiling on Linux From Command Line</h3 >
120120 From within the examples folder, you can compile nearly all of the examples with a single command like so:
121121<code_box >
122- g++ -std=c++11 -O3 -I.. ../dlib/all/source.cpp -lpthread -lX11 example_program_name.cpp
122+ g++ -std=c++14 -O3 -I.. ../dlib/all/source.cpp -lpthread -lX11 example_program_name.cpp
123123</code_box >
124124
125125On non-Linux systems like Solaris, you might have to link to other libraries. For example, I have seen systems
You can’t perform that action at this time.
0 commit comments