I made some progress...
It turns out that libquadmath is failing to build.
When I goto the `build/tmp/work/...../gcc-runtime/9.2.0-r0/gcc-9.2.0/build.arm-oe-linux-gnueabi.arm-oe-linux-gnueabi/arm-oe-linux-gnueabi/libquadmath` directory, the only files that are there are:
```
libquadmath ] ls -l
total 476
-rw-r--r--. 1 2017 oe-builder 4433 Jan 3 16:17 config.h
-rw-r--r--. 1 2017 oe-builder 69297 Jan 3 16:17 config.log
-rwxr-xr-x. 1 2017 oe-builder 77122 Jan 3 16:17 config.status
-rwxr-xr-x. 1 2017 oe-builder 267083 Jan 3 16:17 libtool
-rw-r--r--. 1 2017 oe-builder 57241 Jan 3 16:17 Makefile
-rw-r--r--. 1 2017 oe-builder 23 Jan 3 16:17 stamp-h1
```
In the config.log, there are errors, some of which are expected, but still:
```
libquadmath ] grep -i error config.log
arm-oe-linux-gnueabi-gcc: error: unrecognized command line option '-V'
arm-oe-linux-gnueabi-gcc: fatal error: no input files
arm-oe-linux-gnueabi-gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
arm-oe-linux-gnueabi-gcc: fatal error: no input files
conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory
arm-oe-linux-gnueabi-gcc: error: unrecognized command line option '-V'
arm-oe-linux-gnueabi-gcc: fatal error: no input files
arm-oe-linux-gnueabi-gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
arm-oe-linux-gnueabi-gcc: fatal error: no input files
conftest.c:28:10: fatal error: ac_nonexistent.h: No such file or directory
configure:12551: arm-oe-linux-gnueabi-gcc -mthumb -mfpu=neon -mfloat-abi=hard -mcpu=cortex-a9 --sysroot=/home/oe-builder/build/tmp-glibc/work/cortexa9t2hf-neon-oe-linux-gnueabi/gcc-runtime/9.2.0-r0/recipe-sysroot -c -O2 -pipe -g -feliminate-unused-debug-types -fdebug-prefix-map=/home/oe-builder/build/tmp-glibc/work/cortexa9t2hf-neon-oe-linux-gnueabi/gcc-runtime/9.2.0-r0/recipe-sysroot= -fdebug-prefix-map=/home/oe-builder/build/tmp-glibc/work/cortexa9t2hf-neon-oe-linux-gnueabi/gcc-runtime/9.2.0-r0/recipe-sysroot-native= -fdebug-prefix-map=/home/oe-builder/build/tmp-glibc/work-shared/gcc-9.2.0-r0/gcc-9.2.0=/usr/src/debug/gcc-runtime/9.2.0-r0 -fdebug-prefix-map=/home/oe-builder/build/tmp-glibc/work-shared/gcc-9.2.0-r0/gcc-9.2.0/include=/usr/src/debug/gcc-runtime/9.2.0-r0/libstdc++-v3/../include -fdebug-prefix-map=/home/oe-builder/build/tmp-glibc/work-shared/gcc-9.2.0-r0/gcc-9.2.0/libiberty=/usr/src/debug/gcc-runtime/9.2.0-r0/libstdc++-v3/../libiberty -fdebug-prefix-map=/home/oe-builder/build/tmp-glibc/work/cortexa9t2hf-neon-oe-linux-gnueabi/gcc-runtime/9.2.0-r0/gcc-9.2.0/build.arm-oe-linux-gnueabi.arm-oe-linux-gnueabi=/usr/src/debug/gcc-runtime/9.2.0-r0 -Werror conftest.c >&5
glibcxx_cv_system_error10=yes
glibcxx_cv_system_error11=yes
glibcxx_cv_system_error12=yes
glibcxx_cv_system_error13=yes
glibcxx_cv_system_error14=yes
glibcxx_cv_system_error15=yes
glibcxx_cv_system_error16=yes
glibcxx_cv_system_error17=yes
glibcxx_cv_system_error18=yes
glibcxx_cv_system_error19=yes
glibcxx_cv_system_error1=yes
glibcxx_cv_system_error2=yes
glibcxx_cv_system_error3=yes
glibcxx_cv_system_error4=yes
glibcxx_cv_system_error5=yes
glibcxx_cv_system_error6=yes
glibcxx_cv_system_error7=yes
glibcxx_cv_system_error8=yes
glibcxx_cv_system_error9=yes
```
If I check out another library that I expect to get, like, `libitm`, I see:
```
libquadmath ] ls -trl ../libitm/
total 2872
-rwxr-xr-x. 1 2017 oe-builder 97435 Jan 3 16:17 config.status
-rw-r--r--. 1 2017 oe-builder 47665 Jan 3 16:17 Makefile
drwxr-xr-x. 2 2017 oe-builder 22 Jan 3 16:17 testsuite
-rw-r--r--. 1 2017 oe-builder 162 Jan 3 16:17 libitm.spec
-rw-r--r--. 1 2017 oe-builder 5251 Jan 3 16:17 config.h
-rw-r--r--. 1 2017 oe-builder 23 Jan 3 16:17 stamp-h1
-rwxr-xr-x. 1 2017 oe-builder 274850 Jan 3 16:17 libtool
-rw-r--r--. 1 2017 oe-builder 868 Jan 3 16:17 gstdint.h
-rw-r--r--. 1 2017 oe-builder 119521 Jan 3 16:17 config.log
-rw-r--r--. 1 2017 oe-builder 50080 Jan 3 16:18 alloc_c.o
...
-rw-r--r--. 1 2017 oe-builder 931 Jan 3 16:18
libitm.la```
Have you seen something like this before? I am not sure how to fix this...
Any help is greatly appreciated.