Skip to content

Commit 707870f

Browse files
committed
Eliminate use of ambiguous term 'build tool'
1 parent 1c8c414 commit 707870f

12 files changed

+51
-47
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ Stack can be built with Stack (which is recommended) or with Cabal (the tool).
735735
~~~
736736

737737
A cradle is not committed to Stack's repository because it imposes a choice of
738-
build tool.
738+
tool used for building.
739739

740740
## Dev Containers
741741

ChangeLog.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1235,9 +1235,9 @@ Behavior changes:
12351235
[help file](https://github.com/commercialhaskell/stack-templates/blob/master/STACK_HELP.md)
12361236
with more information on how to discover templates. See:
12371237
[#4039](https://github.com/commercialhaskell/stack/issues/4039)
1238-
* Build tools are now handled in a similar way to `cabal-install`. In
1239-
particular, for legacy `build-tools` fields, we use a hard-coded
1240-
list of build tools in place of looking up build tool packages in a
1238+
* Tools used during building ('build tools') are now handled in a similar way to
1239+
`cabal-install`. In particular, for legacy `build-tools` fields, we use a
1240+
hard-coded list of build tools in place of looking up build tool packages in a
12411241
tool map. This both brings Stack's behavior closer into line with
12421242
`cabal-install`, avoids some bugs, and opens up some possible
12431243
optimizations/laziness. See:

doc/GUIDE.md

+10-8
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22

33
# User guide (introductory)
44

5-
Stack is a modern, cross-platform build tool for Haskell code.
5+
Stack is a modern, cross-platform tool for building Haskell code.
66

77
This introductory guide takes a new Stack user through the typical workflows.
88
This guide will not teach Haskell or involve much code, and it requires no prior
9-
experience with the Haskell packaging system or other build tools. Terms used in
10-
the guide are defined in the [glossary](glossary.md).
9+
experience with the Haskell packaging system or other tools used for, or during,
10+
building Haskell code. Terms used in the guide are defined in the
11+
[glossary](glossary.md).
1112

1213
Some of Stack's features will not be needed regularly or by all users. See the
1314
[advanced user's guide](GUIDE_advanced.md) for information about those features.
@@ -16,9 +17,10 @@ Some of Stack's features will not be needed regularly or by all users. See the
1617

1718
Stack handles the management of your toolchain (including GHC — the Glasgow
1819
Haskell Compiler — and, for Windows users, MSYS2), building and registering
19-
libraries, building build tool dependencies, and more. While it can use existing
20-
tools on your system, Stack has the capacity to be your one-stop shop for all
21-
Haskell tooling you need. This guide will follow that Stack-centric approach.
20+
libraries, building dependencies on tools used during building, and more. While
21+
it can use existing tools on your system, Stack has the capacity to be your
22+
one-stop shop for all Haskell tooling you need. This guide will follow that
23+
Stack-centric approach.
2224

2325
### What makes Stack special?
2426

@@ -45,8 +47,8 @@ Stack directories. Stack-built files generally go in either the Stack root
4547
directory or `./.stack-work` directories local to each project. The
4648
[Stack root](stack_root.md) directory holds packages belonging to snapshots and
4749
any Stack-installed versions of GHC. Stack will not tamper with any system
48-
version of GHC or interfere with packages installed by other build tools, such
49-
as Cabal (the tool).
50+
version of GHC or interfere with packages installed by other tools used for
51+
building Haskell code, such as Cabal (the tool).
5052

5153
## Downloading and Installation
5254

doc/README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -277,11 +277,11 @@ explained in the [glossary](glossary.md).
277277

278278
## Why Stack?
279279

280-
Stack is a build tool for Haskell designed to answer the needs of Haskell users,
281-
both new and experienced. It has a strong focus on reproducible build plans,
282-
multi-package projects, and a consistent, easy-to-learn set of Stack commands.
283-
It also aims to provide the customizability and power that experienced
284-
developers need.
280+
Stack is a tool for building Haskell code designed to answer the needs of
281+
Haskell users, both new and experienced. It has a strong focus on reproducible
282+
build plans, multi-package projects, and a consistent, easy-to-learn set of
283+
Stack commands. It also aims to provide the customizability and power that
284+
experienced developers need.
285285

286286
Stack does not stand alone. It is built on the great work provided by:
287287

@@ -294,9 +294,9 @@ Stack does not stand alone. It is built on the great work provided by:
294294

295295
!!! info
296296

297-
Cabal is also the name of another build tool, provided by the
298-
`cabal-install` package. This guide distinguishes between them by Cabal
299-
(the library) and Cabal (the tool).
297+
Cabal is also the name of another tool used for building Haskell code,
298+
provided by the `cabal-install` package. This guide distinguishes
299+
between them by Cabal (the library) and Cabal (the tool).
300300

301301
* The __Hackage Haskell Package Repository__, a
302302
[repository](https://hackage.haskell.org/) of Haskell packages providing

doc/Stack_and_VS_Code.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ extension's settings (under 'Haskell: Manage HLS') allow a user to specify
2222
that the extension should use a separate application,
2323
[GHCup](https://www.haskell.org/ghcup/), to download and install the versions of
2424
HLS that it needs. GHCup can download and install things other than HLS,
25-
including GHC, MSYS2 (on Windows), Cabal (a build tool), and Stack itself. GHCup
26-
can also update itself. On Windows, GHCup has the capability of using the
27-
Stack-supplied MSYS2 rather than installing a duplicate copy. Cabal (the build
28-
tool), like Stack, depends on the Cabal (the library). Cabal (the tool), unlike
29-
Stack, does not have the capability to automatically install necessary versions
30-
of GHC, and (as well as supporting the extension) GHCup fills a important gap
31-
for users of the Cabal tool.
25+
including GHC, MSYS2 (on Windows), Cabal (a tool for building Haskell code), and
26+
Stack itself. GHCup can also update itself. On Windows, GHCup has the capability
27+
of using the Stack-supplied MSYS2 rather than installing a duplicate copy. Cabal
28+
(the tool), like Stack, depends on the Cabal (the library). Cabal (the tool),
29+
unlike Stack, does not have the capability to automatically install necessary
30+
versions of GHC, and (as well as supporting the extension) GHCup fills a
31+
important gap for users of the Cabal tool.
3232

3333
If the VS Code extension is set not to use GHCup, its user needs to ensure that
3434
each version of HLS that the extension needs is on the PATH.
@@ -78,8 +78,8 @@ different version of GHC, then GHCup must be used to install it (if GHCup has
7878
not already installed that version). For example, to use `snapshot: lts-22.21`
7979
(GHC 9.6.5), the command `ghcup install ghc 9.6.5` must have been used to
8080
install GHC 9.6.5. That may be a minor inconvenience for some people, as one the
81-
primary benefits of Stack over other Haskell build tools has been that Stack
82-
automatically ensures that the necessary version of GHC is available.
81+
primary benefits of Stack over other tools for building Haskell code has been
82+
that Stack automatically ensures that the necessary version of GHC is available.
8383

8484
### Workaround #2
8585

doc/build_overview.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,9 @@ installed in this database will never need to be rebuilt.
230230
* Apply flags, platform, and actual GHC version to resolve
231231
dependencies in any package analyzed
232232
* Include all library dependencies for all enabled components
233-
* Include all build tool dependencies for all enabled components
234-
(using the fun backwards compat logic for `build-tools`)
233+
* Include all dependencies for tools used during building ('build tools') for
234+
all enabled components (using the fun backwards compat logic for
235+
`build-tools`)
235236
* Apply the logic recursively to come up with a full build plan
236237
* If a task depends exclusively on immutable packages, mark it as
237238
immutable. Otherwise, it's mutable. The former go into the snapshot

doc/dev_containers.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ The
124124
and the
125125
[Haskell extension](https://marketplace.visualstudio.com/items?itemName=haskell.haskell)
126126
are only available in the default Dev Container. In order to use the Haskell
127-
extension, you must first configure the project for the build tool of your
128-
choice.
127+
extension, you must first configure the project for the tool used for building
128+
of your choice.
129129

130130
<!--
131131
**Stack**

doc/faq.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -239,17 +239,18 @@ with the various requirements (version, architecture) that your project needs.
239239
See issue [#420](https://github.com/commercialhaskell/stack/issues/420) for a
240240
detailed discussion of Stack's behavior when `system-ghc` is enabled.
241241

242-
## How do I get extra build tools?
242+
## How do I get extra tools used during building?
243243

244-
Stack will automatically install build tools required by your packages or their
245-
dependencies, in particular [Alex](https://hackage.haskell.org/package/alex) and
244+
Stack will automatically install tools used during building required by your
245+
packages or their dependencies, in particular
246+
[Alex](https://hackage.haskell.org/package/alex) and
246247
[Happy](https://hackage.haskell.org/package/happy).
247248

248249
!!! note
249250

250251
This works when using LTS or nightly snapshots, not with GHC or custom
251-
snapshots. You can manually install build tools by running, e.g.,
252-
`stack build alex happy`.
252+
snapshots. You can manually install tools used during building by running,
253+
e.g., `stack build alex happy`.
253254

254255
## How does Stack choose which snapshot to use when creating a new configuration file?
255256

doc/glossary.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The following terms are used in Stack's documentation.
88
|-------------------|----------------------------------------------------------|
99
|Cabal |The Haskell Common Architecture for Building Applications and Libraries, provided by the [`Cabal` package](https://hackage.haskell.org/package/Cabal). Also referred to as Cabal (the library) to distinguish it from Cabal (the tool).|
1010
|Cabal file|A file containing a [package description](https://cabal.readthedocs.io/en/stable/cabal-package.html) used by Cabal, named `<package_name>.cabal`.|
11-
|Cabal (the tool)|The Haskell build tool provided by the [`cabal-install` package](https://hackage.haskell.org/package/cabal-install).|
11+
|Cabal (the tool)|The Haskell tool used for building provided by the [`cabal-install` package](https://hackage.haskell.org/package/cabal-install).|
1212
|CI |Continuous integration. |
1313
|CMake |A [system](https://cmake.org/) for managing build processes.|
1414
|`config.yaml` |A global and non-project-specific configuration file used by Stack.|

doc/install_and_upgrade.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ GitHub repository.
2020
using the separate [GHCup](https://www.haskell.org/ghcup/) installer for
2121
Haskell-related tools. GHCup provides Stack for some combinations of machine
2222
architecture and operating system not provided elsewhere. Unlike Stack,
23-
other build tools do not automatically install GHC. GHCup can be used to
24-
install GHC for those other tools. By default, the script to install GHCup
25-
(which can be run more than once) also configures Stack so that if Stack
26-
needs a version of GHC, GHCup takes over obtaining and installing that
27-
version.
23+
other tools used for building Haskell code do not automatically install GHC.
24+
GHCup can be used to install GHC for those other tools. By default, the
25+
script to install GHCup (which can be run more than once) also configures
26+
Stack so that if Stack needs a version of GHC, GHCup takes over obtaining
27+
and installing that version.
2828

2929
!!! info "Releases on GitHub"
3030

doc/maintainers/archive/releases.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ Now continue to the **General Windows setup** subsection below.
233233
git config --global user.name "Emanuel Borsboom"
234234
~~~
235235
236-
10. Install build tools and dependencies packages
236+
10. Install tools used during building and dependencies packages
237237
238238
~~~text
239239
sudo apt-get install -y g++ gcc libc6-dev libffi-dev libgmp-dev make xz-utils zlib1g-dev git gnupg

doc/stack_yaml_vs_cabal_package_file.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ file and a package description file.
2929

3030
## Package versus project
3131

32-
Stack is a build tool and it uses Cabal, a build system. Cabal defines the
33-
concept of a _package_. A package has:
32+
Stack is a tool for building Haskell code and it uses Cabal, a build system.
33+
Cabal defines the concept of a _package_. A package has:
3434

3535
* A name and version
3636
* optionally, one library

0 commit comments

Comments
 (0)