Skip to content
Merged
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
8 changes: 8 additions & 0 deletions docs/maintainer/knowledge_base.md
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,14 @@ Batch syntax is a bit different from Bash and friends on Unix, so we have collec
There are also some minimal emulators online that might get you started with the basics, even if not all CMD features are present.
For example, this [Windows 95 emulator](https://www.pcjs.org/software/pcx86/sys/windows/win95/4.00.950/) features a more or less okay MS-DOS prompt.

<a id="building-packages-using-configure-scripts-written-in-shell-script"></a>

### Building packages using configure scripts written in shell script

Some packages do not provide build systems with first-hand support for Windows, in particular these using `configure` scripts using autotools, or hand-written in shell scripts.
You can use the [autotools_clang_conda](https://github.com/conda-forge/autotools_clang_conda-feedstock?tab=readme-ov-file#about-autotools_clang_conda-feedstock) to provide a build environment with a set of MSYS2 packages and a Clang toolchain configured to build packages compatible with MSVC.
Copy link
Member

Choose a reason for hiding this comment

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

The README in autotools_clang_conda-feedstock is not properly rendered. Can you link to https://github.com/conda-forge/autotools_clang_conda-feedstock/blob/main/recipe/meta.yaml#L41-L74 ?

Copy link
Contributor Author

@mgorny mgorny Nov 12, 2025

Choose a reason for hiding this comment

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

Well, I was going to ask if we should add some "```"s to make it render as Markdown. The problem with linking to specific lines is that the link's going to become slightly wrong when the line numbers change. I could link to specific commit, but then the instructions would eventually become outdated.

Copy link
Member

Choose a reason for hiding this comment

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

If you can get the README to render correctly, go for it.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Is this good to go now?

The feedstock's description provides example instructions.

<a id="special-dependencies-and-packages"></a>

## Special Dependencies and Packages
Expand Down
Loading