summaryrefslogtreecommitdiff
path: root/HOWTO
diff options
context:
space:
mode:
authorRickard Green <rickard@erlang.org>2021-06-15 22:26:05 +0200
committerRickard Green <rickard@erlang.org>2021-06-15 22:26:05 +0200
commit10d29e1d76c7ffa786436635d8e9c73786ad6941 (patch)
treea9a39eecf6b5f7fa83e1a69f58233d24d591a9a2 /HOWTO
parent9f98de7f5c1bb27a27b59a89e076b00f7e062d13 (diff)
parent719e0734c9160006e039a9094ba305b5d1d9b95e (diff)
downloaderlang-10d29e1d76c7ffa786436635d8e9c73786ad6941.tar.gz
Merge branch 'rickard/autoconf-2.71/OTP-17414' into rickard/autoconf-2.71/master/OTP-17414
* rickard/autoconf-2.71/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.