Ninja failing to build NRFX

I've set up an example application using the peripheral_hr application example and workspace because I need to load a module using west
https://github.com/twonius/Zepyr_Spot


but when I try to build my project it keeps failing at the following point: 

[213/227] Building C object modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic__nrfx.dir/C_/Users/anton/Documents/GitHub/Zepyr_Spot/modules/hal/nordic/nrfx/drivers/src/nrfx_ppi.c.obj
ninja: build stopped: subcommand failed.


I think it's actually going off the rails a bit earlier though 

[210/227] Building C object modules/HX711/drivers/sensor/hx711/CMakeFiles/..__modules__HX711__drivers__sensor__hx711.dir/hx711.c.obj
FAILED: modules/HX711/drivers/sensor/hx711/CMakeFiles/..__modules__HX711__drivers__sensor__hx711.dir/hx711.c.obj

I'm building for the NRF52 DK NRF52832 

I saw this post regarding Ninja error but haven't been able to get figure out the bash  

devzone.nordicsemi.com/.../ninja-build-stopped-subcommand-failed

I thought perhaps the library I'm importing is just buggy but I'm also seeing lots of warnings related to zephyr alone so that makes me thing something is up with how I'm building 

e.g. 
C:\Users\anton\Documents\GitHub\Zepyr_Spot\zephyr\include\zephyr\logging\log_msg.h:430:65: error: '_v1' undeclared (first use in this function)
430 | #define Z_LOG_LOCAL_ARG_NAME(idx, arg) COND_CODE_0(idx, (arg), (_v##idx))
| ^~

Related