I am trying to follow the tutorial given on this page:
However, my eclipse project does not build and created following log
13:55:03 **** Build of configuration Default for project blinky_blank_pca10040 ****
make VERBOSE=1 all
rm -rf _build
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f Makefile -C ./ -e cleanobj
rm -rf _build/*.o
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f Makefile -C ./ -e nrf52832_xxaa
echo Makefile
Makefile
mkdir _build
Compiling file: system_nrf52.c
'/Users/bhaumik/mac-build/gcc-arm-none-eabi-4_9-2015q3//bin/arm-none-eabi-gcc' -DNRF52_PAN_12 -DNRF52_PAN_15 -DNRF52_PAN_58 -DNRF52_PAN_20 -DNRF52_PAN_54 -DNRF52_PAN_31 -DNRF52_PAN_30 -DNRF52_PAN_51 -DNRF52_PAN_36 -DNRF52_PAN_53 -DCONFIG_GPIO_AS_PINRESET -DNRF52_PAN_64 -DNRF52_PAN_55 -DNRF52_PAN_62 -DNRF52_PAN_63 -DBOARD_PCA10040 -DNRF52 -DBSP_DEFINES_ONLY -mcpu=cortex-m4 -mthumb -mabi=aapcs --std=gnu99 -Wall -Werror -O0 -g3 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -ffunction-sections -fdata-sections -fno-strict-aliasing -fno-builtin --short-enums -I/Users/bhaumik/Downloads/nRF5_SDK_12-2/components/toolchain/gcc -I/Users/bhaumik/Downloads/nRF5_SDK_12-2/components/toolchain -I/Users/bhaumik/Downloads/nRF5_SDK_12-2/examples/peripheral/blinky -I/Users/bhaumik/Downloads/nRF5_SDK_12-2/examples/bsp -I/Users/bhaumik/Downloads/nRF5_SDK_12-2/components/device -I/Users/bhaumik/Downloads/nRF5_SDK_12-2/components/drivers_nrf/delay -I/Users/bhaumik/Downloads/nRF5_SDK_12-2/components/toolchain/CMSIS/Include -I/Users/bhaumik/Downloads/nRF5_SDK_12-2/components/drivers_nrf/hal -c -o _build/system_nrf52.o /Users/bhaumik/Downloads/nRF5_SDK_12-2/components/toolchain/system_nrf52.c
Compiling file: main.c
'/Users/bhaumik/mac-build/gcc-arm-none-eabi-4_9-2015q3//bin/arm-none-eabi-gcc' -DNRF52_PAN_12 -DNRF52_PAN_15 -DNRF52_PAN_58 -DNRF52_PAN_20 -DNRF52_PAN_54 -DNRF52_PAN_31 -DNRF52_PAN_30 -DNRF52_PAN_51 -DNRF52_PAN_36 -DNRF52_PAN_53 -DCONFIG_GPIO_AS_PINRESET -DNRF52_PAN_64 -DNRF52_PAN_55 -DNRF52_PAN_62 -DNRF52_PAN_63 -DBOARD_PCA10040 -DNRF52 -DBSP_DEFINES_ONLY -mcpu=cortex-m4 -mthumb -mabi=aapcs --std=gnu99 -Wall -Werror -O0 -g3 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -ffunction-sections -fdata-sections -fno-strict-aliasing -fno-builtin --short-enums -I/Users/bhaumik/Downloads/nRF5_SDK_12-2/components/toolchain/gcc -I/Users/bhaumik/Downloads/nRF5_SDK_12-2/components/toolchain -I/Users/bhaumik/Downloads/nRF5_SDK_12-2/examples/peripheral/blinky -I/Users/bhaumik/Downloads/nRF5_SDK_12-2/examples/bsp -I/Users/bhaumik/Downloads/nRF5_SDK_12-2/components/device -I/Users/bhaumik/Downloads/nRF5_SDK_12-2/components/drivers_nrf/delay -I/Users/bhaumik/Downloads/nRF5_SDK_12-2/components/toolchain/CMSIS/Include -I/Users/bhaumik/Downloads/nRF5_SDK_12-2/components/drivers_nrf/hal -c -o _build/main.o /Users/bhaumik/Downloads/nRF5_SDK_12-2/examples/peripheral/blinky/main.c
make[1]: *** No rule to make target `_build/nrf_delay.o', needed by `nrf52832_xxaa'. Stop.
make: *** [all] Error 2
13:55:03 Build Finished (took 274ms)
I am wondering why, I am wondering if my paths have to do something with it.
Any help will be appreciated.