-
-
Notifications
You must be signed in to change notification settings - Fork 283
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
base: main
Are you sure you want to change the base?
Changes from 2 commits
8a2fcc2
b36b389
85dbd59
758a88e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -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: | ||||||
|
||||||
``` | ||||||
compilers cmake pkg-config make ninja meson | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
While I appreciate that using My views here are all conditioned on a research field that is a bit more conservative about pulling in additional dependencies that are not strictly required, and that I like people to generally understand why they have most of (not going to say all) of the dependencies installed that they do. At the same time, I'm being slightly inconsistent by not complaining about So my suggestion here is more along the lines of sticking to the
part of your additions. Alternatively/Additionally, I'd suggest mentioning what each of these dependencies brings / why you'd want to install them. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I agree on not installing a fortran compiler, applied your suggestions on 85dbd59 . As a personal opinion, I think that instead is fruitful to have There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'll defer to you and other reviewers here. I come from a field where in terms of build systems CMake is considered the "new" way of doing things and we're slowly clawing our way out of |
||||||
``` | ||||||
|
||||||
<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> | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.