Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FAQ: document additional tools required for C/C++ development #2374

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/user/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,12 @@ x86_64-apple-darwin13.4.0-clang: No such file or directory

are a telltale sign that you are lacking compilers.

Depending on the specific tools that you use for building C/C++ code, you may need some additional tools, for example:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Depending on the specific tools that you use for building C/C++ code, you may need some additional tools, for example:
The actual orchestration of the various compilation and linking steps is almost always done
by some build orchestrator (e.g. `CMake`, `meson`, ...), which will generally require a
build system (e.g. `ninja`, `make`), or possibly other supporting tools like `pkg-config`.
We package several tools that can be used for building C/C++ code; a selection that covers
the most common scenarios would be:


```
cxx-compiler cmake pkg-config make ninja meson
```

<a id="faq-compiler-required-options"></a>

<a id="why-don-t-the-c-c-compilers-automatically-know-how-to-find-libraries-installed-by-conda"></a>
Expand Down
Loading