Skip to content

Practicing Standard Library based on "The C++ Standard Library, 2nd"

Notifications You must be signed in to change notification settings

1452712/STL_App

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

STL_App

Practicing Standard Library based on "The C++ Standard Library, 2nd"

Contents

Dir Releated Libs
ThreadLibrary <atomic>, <condition_variable>, <coroutine>, <mutex>, <thread>, <future>

Using CMake

From current directory:

[CC=clang] [CXX=clang++] cmake --build build --target install -j 16
# or: "cmake --install build", require CMake > 3.15
# or from ./build: "make install" / "cmake --build . --target install" /
#                   "cmake --install ." (require > 3.15)

To debug CMake: cmake ... --trace or cmake ... --trace-source="filename".

About

Practicing Standard Library based on "The C++ Standard Library, 2nd"

Resources

Stars

Watchers

Forks