nuttx/arch/arm64
Lee Lup Yuen 6cad7e9582 arm, arm64, xtensa, libxx: Change sed -r to sed -E to support macOS
When we build NuttX on macOS, it shows many `sed` messages (and the build still completes successfully):

```text
$ tools/configure.sh pinephone:nsh
$ make
sed: illegal option -- r
```

This is due to the Makefiles executing `sed -r` which is not a valid option on macOS.

This PR proposes to change `sed -r` to `sed -E` because:

- `sed -E` on macOS is equivalent to `sed -r` on Linux

- `sed -E` and `sed -r` are aliases according to the GNU `sed` Manual

- `sed -E` is already used in nuttx_add_romfs.cmake, nuttx_add_symtab.cmake and process_config.sh
2023-10-10 11:36:32 +03:00
..
include arm64: GoldFish Platform support 2023-09-19 11:34:26 +08:00
src arm, arm64, xtensa, libxx: Change sed -r to sed -E to support macOS 2023-10-10 11:36:32 +03:00
Kconfig arch/arm64: select ARCH_HAVE_IRQTRIGGER for all arm64 chip 2023-09-20 20:52:03 +08:00