summaryrefslogtreecommitdiff
path: root/HOWTO
diff options
context:
space:
mode:
authorRickard Green <rickard@erlang.org>2021-06-17 15:23:19 +0200
committerRickard Green <rickard@erlang.org>2021-06-17 15:23:19 +0200
commit8d67ce9213b99549cc25b6c1a82a432da7285919 (patch)
treed6e4ea4054d7a92bbfd2cfd9e04e41c4917ae95a /HOWTO
parent99aa68badfb1fdae5204a42a8a7bf797425bd4b7 (diff)
parent10d29e1d76c7ffa786436635d8e9c73786ad6941 (diff)
downloaderlang-8d67ce9213b99549cc25b6c1a82a432da7285919.tar.gz
Merge branch 'rickard/autoconf-2.71/master/OTP-17414'
* rickard/autoconf-2.71/master/OTP-17414: Update configure scripts Remove leftovers of standalone build for wx application Double quote arguments to AC_LANG_PROGRAM() and AC_LANG_SOURCE() Update configure scripts Move autoconf helpers from erts to make/autoconf Update configure scripts Adapt configure scripts to autoconf 2.71 (step 2) Update configure scripts Adapt configure scripts to autoconf 2.71 (step 1) No tabs in m4 files Fix monotonic hrtime configure test
Diffstat (limited to 'HOWTO')
-rw-r--r--HOWTO/INSTALL-CROSS.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/HOWTO/INSTALL-CROSS.md b/HOWTO/INSTALL-CROSS.md
index 322ff13340..d5f014f072 100644
--- a/HOWTO/INSTALL-CROSS.md
+++ b/HOWTO/INSTALL-CROSS.md
@@ -129,11 +129,11 @@ be built.
`<HOST>` is the host/target system that you build for. It does not have to be
a full `CPU-VENDOR-OS` triplet, but can be. The full `CPU-VENDOR-OS` triplet
-will be created by executing `$ERL_TOP/erts/autoconf/config.sub <HOST>`. If
+will be created by executing `$ERL_TOP/make/autoconf/config.sub <HOST>`. If
`config.sub` fails, you need to be more specific.
`<BUILD>` should equal the `CPU-VENDOR-OS` triplet of the system that you
-build on. If you execute `$ERL_TOP/erts/autoconf/config.guess`, it will in
+build on. If you execute `$ERL_TOP/make/autoconf/config.guess`, it will in
most cases print the triplet you want to use for this.
Pass the cross compilation variables as command line arguments to `configure`
@@ -338,15 +338,15 @@ cross compilation using `$ERL_TOP/otp_build configure`.
`--build=$erl_xcomp_build` argument to the `configure` script. It does
not have to be a full `CPU-VENDOR-OS` triplet, but can be. The full
`CPU-VENDOR-OS` triplet will be created by
- `$ERL_TOP/erts/autoconf/config.sub $erl_xcomp_build`. If set to `guess`,
+ `$ERL_TOP/make/autoconf/config.sub $erl_xcomp_build`. If set to `guess`,
the build system will be guessed using
- `$ERL_TOP/erts/autoconf/config.guess`.
+ `$ERL_TOP/make/autoconf/config.guess`.
* `erl_xcomp_host` - Cross host/target system to build for. This value will
be passed as `--host=$erl_xcomp_host` argument to the `configure` script.
It does not have to be a full `CPU-VENDOR-OS` triplet, but can be. The
full `CPU-VENDOR-OS` triplet will be created by
- `$ERL_TOP/erts/autoconf/config.sub $erl_xcomp_host`.
+ `$ERL_TOP/make/autoconf/config.sub $erl_xcomp_host`.
* `erl_xcomp_configure_flags` - Extra configure flags to pass to the
`configure` script.