Skip to content

Latest commit

 

History

History
46 lines (28 loc) · 1.15 KB

File metadata and controls

46 lines (28 loc) · 1.15 KB

CPP

llvm installed from brew

To use the bundled libc++ please add the following LDFLAGS:

LDFLAGS="-L/opt/homebrew/opt/llvm/lib/c++ -Wl,-rpath,/opt/homebrew/opt/llvm/lib/c++"`

llvm is keg-only, which means it was not symlinked into /opt/homebrew, because macOS already provides this software and installing another version in parallel can cause all kinds of trouble.

If you need to have llvm first in your PATH, run:

  echo 'export PATH="/opt/homebrew/opt/llvm/bin:$PATH"' >> ~/.zshrc

For compilers to find llvm you may need to set:

  export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"
  export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"

C++ Libraries and others

awesome-cpp

CMake

CLI

Profiler/Memory management/tracking