-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.ninja
More file actions
6745 lines (4693 loc) · 884 KB
/
build.ninja
File metadata and controls
6745 lines (4693 loc) · 884 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# CMAKE generated file: DO NOT EDIT!
# Generated by "Ninja" Generator, CMake Version 3.16
# This file contains all the build statements describing the
# compilation DAG.
# =============================================================================
# Write statements declared in CMakeLists.txt:
#
# Which is the root file.
# =============================================================================
# =============================================================================
# Project: array_send_ble
# Configuration:
# =============================================================================
#############################################
# Minimal version of Ninja required by this file
ninja_required_version = 1.5
# =============================================================================
# Include auxiliary files.
#############################################
# Include rules file.
include rules.ninja
# =============================================================================
# Object build statements for STATIC_LIBRARY target app
#############################################
# Order-only phony target for app
build cmake_object_order_depends_target_app: phony || zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers
build CMakeFiles/app.dir/src/main.c.obj: C_COMPILER__app ../src/main.c || cmake_object_order_depends_target_app
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = CMakeFiles/app.dir/src/main.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = CMakeFiles/app.dir
OBJECT_FILE_DIR = CMakeFiles/app.dir/src
TARGET_COMPILE_PDB = CMakeFiles/app.dir/app.pdb
TARGET_PDB = app/libapp.pdb
build CMakeFiles/app.dir/src/bluetooth.c.obj: C_COMPILER__app ../src/bluetooth.c || cmake_object_order_depends_target_app
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = CMakeFiles/app.dir/src/bluetooth.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = CMakeFiles/app.dir
OBJECT_FILE_DIR = CMakeFiles/app.dir/src
TARGET_COMPILE_PDB = CMakeFiles/app.dir/app.pdb
TARGET_PDB = app/libapp.pdb
# =============================================================================
# Link build statements for STATIC_LIBRARY target app
#############################################
# Link the static library app/libapp.a
build app/libapp.a: C_STATIC_LIBRARY_LINKER__app CMakeFiles/app.dir/src/main.c.obj CMakeFiles/app.dir/src/bluetooth.c.obj || zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers
OBJECT_DIR = CMakeFiles/app.dir
POST_BUILD = :
PRE_LINK = :
TARGET_COMPILE_PDB = CMakeFiles/app.dir/app.pdb
TARGET_FILE = app/libapp.a
TARGET_PDB = app/libapp.pdb
#############################################
# Utility command for zephyr_property_target
build zephyr_property_target: phony
#############################################
# Utility command for rebuild_cache
build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832 && /usr/bin/cmake -S/home/johangarrido/samples/array_send_ble -B/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832
DESC = Running CMake to regenerate build system...
pool = console
restat = 1
build rebuild_cache: phony CMakeFiles/rebuild_cache.util
#############################################
# Utility command for edit_cache
build CMakeFiles/edit_cache.util: CUSTOM_COMMAND
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832 && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
DESC = No interactive CMake dialog available...
restat = 1
build edit_cache: phony CMakeFiles/edit_cache.util
#############################################
# Utility command for pristine
build pristine: phony CMakeFiles/pristine
#############################################
# Utility command for compiler-cpp
build compiler-cpp: phony
#############################################
# Utility command for menuconfig
build menuconfig: phony CMakeFiles/menuconfig
#############################################
# Utility command for bintools
build bintools: phony
#############################################
# Utility command for hardenconfig
build hardenconfig: phony CMakeFiles/hardenconfig
#############################################
# Utility command for runners_yaml_props_target
build runners_yaml_props_target: phony
#############################################
# Utility command for config-sanitycheck
build config-sanitycheck: phony CMakeFiles/config-sanitycheck
#############################################
# Utility command for menuconfig_ses
build menuconfig_ses: phony CMakeFiles/menuconfig_ses
#############################################
# Utility command for asm
build asm: phony
#############################################
# Utility command for code_data_relocation_target
build code_data_relocation_target: phony
#############################################
# Utility command for guiconfig
build guiconfig: phony CMakeFiles/guiconfig
#############################################
# Utility command for linker
build linker: phony
#############################################
# Utility command for compiler
build compiler: phony
#############################################
# Custom command for CMakeFiles/pristine
build CMakeFiles/pristine: CUSTOM_COMMAND
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832 && /usr/bin/cmake -P /home/johangarrido/ncs/zephyr/cmake/pristine.cmake
#############################################
# Custom command for CMakeFiles/menuconfig
build CMakeFiles/menuconfig: CUSTOM_COMMAND
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/kconfig && /usr/bin/cmake -E env ZEPHYR_BASE=/home/johangarrido/ncs/zephyr ZEPHYR_TOOLCHAIN_VARIANT=gnuarmemb PYTHON_EXECUTABLE=/usr/bin/python3.8 srctree=/home/johangarrido/ncs/zephyr KERNELVERSION=0x2046300 KCONFIG_CONFIG=/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/.config ARCH=arm ARCH_DIR=/home/johangarrido/ncs/zephyr/arch BOARD_DIR=/home/johangarrido/ncs/zephyr/boards/arm/nrf52dk_nrf52832 SHIELD_AS_LIST= KCONFIG_BINARY_DIR=/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/Kconfig TOOLCHAIN_KCONFIG_DIR=/home/johangarrido/ncs/zephyr/cmake/toolchain/gnuarmemb EDT_PICKLE=/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/edt.pickle ZEPHYR_NRF_MODULE_DIR=/home/johangarrido/ncs/nrf ZEPHYR_MCUBOOT_MODULE_DIR=/home/johangarrido/ncs/bootloader/mcuboot ZEPHYR_MCUMGR_MODULE_DIR=/home/johangarrido/ncs/modules/lib/mcumgr ZEPHYR_NRFXLIB_MODULE_DIR=/home/johangarrido/ncs/nrfxlib ZEPHYR_CMSIS_MODULE_DIR=/home/johangarrido/ncs/modules/hal/cmsis ZEPHYR_CANOPENNODE_MODULE_DIR=/home/johangarrido/ncs/modules/lib/canopennode ZEPHYR_CIVETWEB_MODULE_DIR=/home/johangarrido/ncs/modules/lib/civetweb ZEPHYR_FATFS_MODULE_DIR=/home/johangarrido/ncs/modules/fs/fatfs ZEPHYR_NORDIC_MODULE_DIR=/home/johangarrido/ncs/modules/hal/nordic ZEPHYR_ST_MODULE_DIR=/home/johangarrido/ncs/modules/hal/st ZEPHYR_LIBMETAL_MODULE_DIR=/home/johangarrido/ncs/modules/hal/libmetal ZEPHYR_LVGL_MODULE_DIR=/home/johangarrido/ncs/modules/lib/gui/lvgl ZEPHYR_MBEDTLS_MODULE_DIR=/home/johangarrido/ncs/modules/crypto/mbedtls ZEPHYR_OPEN-AMP_MODULE_DIR=/home/johangarrido/ncs/modules/lib/open-amp ZEPHYR_LORAMAC-NODE_MODULE_DIR=/home/johangarrido/ncs/modules/lib/loramac-node ZEPHYR_OPENTHREAD_MODULE_DIR=/home/johangarrido/ncs/modules/lib/openthread ZEPHYR_SEGGER_MODULE_DIR=/home/johangarrido/ncs/modules/debug/segger ZEPHYR_TINYCBOR_MODULE_DIR=/home/johangarrido/ncs/modules/lib/tinycbor ZEPHYR_TINYCRYPT_MODULE_DIR=/home/johangarrido/ncs/modules/crypto/tinycrypt ZEPHYR_LITTLEFS_MODULE_DIR=/home/johangarrido/ncs/modules/fs/littlefs ZEPHYR_MIPI-SYS-T_MODULE_DIR=/home/johangarrido/ncs/modules/debug/mipi-sys-t ZEPHYR_NRF_HW_MODELS_MODULE_DIR=/home/johangarrido/ncs/modules/bsim_hw_models/nrf_hw_models ZEPHYR_TFM_MODULE_DIR=/home/johangarrido/ncs/modules/tee/tfm EXTRA_DTC_FLAGS= DTS_POST_CPP=/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/nrf52dk_nrf52832.dts.pre.tmp DTS_ROOT_BINDINGS=/home/johangarrido/ncs/nrf/dts/bindings?/home/johangarrido/ncs/zephyr/dts/bindings /usr/bin/python3.8 /home/johangarrido/ncs/zephyr/scripts/kconfig/menuconfig.py /home/johangarrido/ncs/zephyr/Kconfig
pool = console
#############################################
# Custom command for CMakeFiles/hardenconfig
build CMakeFiles/hardenconfig: CUSTOM_COMMAND
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/kconfig && /usr/bin/cmake -E env ZEPHYR_BASE=/home/johangarrido/ncs/zephyr ZEPHYR_TOOLCHAIN_VARIANT=gnuarmemb PYTHON_EXECUTABLE=/usr/bin/python3.8 srctree=/home/johangarrido/ncs/zephyr KERNELVERSION=0x2046300 KCONFIG_CONFIG=/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/.config ARCH=arm ARCH_DIR=/home/johangarrido/ncs/zephyr/arch BOARD_DIR=/home/johangarrido/ncs/zephyr/boards/arm/nrf52dk_nrf52832 SHIELD_AS_LIST= KCONFIG_BINARY_DIR=/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/Kconfig TOOLCHAIN_KCONFIG_DIR=/home/johangarrido/ncs/zephyr/cmake/toolchain/gnuarmemb EDT_PICKLE=/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/edt.pickle ZEPHYR_NRF_MODULE_DIR=/home/johangarrido/ncs/nrf ZEPHYR_MCUBOOT_MODULE_DIR=/home/johangarrido/ncs/bootloader/mcuboot ZEPHYR_MCUMGR_MODULE_DIR=/home/johangarrido/ncs/modules/lib/mcumgr ZEPHYR_NRFXLIB_MODULE_DIR=/home/johangarrido/ncs/nrfxlib ZEPHYR_CMSIS_MODULE_DIR=/home/johangarrido/ncs/modules/hal/cmsis ZEPHYR_CANOPENNODE_MODULE_DIR=/home/johangarrido/ncs/modules/lib/canopennode ZEPHYR_CIVETWEB_MODULE_DIR=/home/johangarrido/ncs/modules/lib/civetweb ZEPHYR_FATFS_MODULE_DIR=/home/johangarrido/ncs/modules/fs/fatfs ZEPHYR_NORDIC_MODULE_DIR=/home/johangarrido/ncs/modules/hal/nordic ZEPHYR_ST_MODULE_DIR=/home/johangarrido/ncs/modules/hal/st ZEPHYR_LIBMETAL_MODULE_DIR=/home/johangarrido/ncs/modules/hal/libmetal ZEPHYR_LVGL_MODULE_DIR=/home/johangarrido/ncs/modules/lib/gui/lvgl ZEPHYR_MBEDTLS_MODULE_DIR=/home/johangarrido/ncs/modules/crypto/mbedtls ZEPHYR_OPEN-AMP_MODULE_DIR=/home/johangarrido/ncs/modules/lib/open-amp ZEPHYR_LORAMAC-NODE_MODULE_DIR=/home/johangarrido/ncs/modules/lib/loramac-node ZEPHYR_OPENTHREAD_MODULE_DIR=/home/johangarrido/ncs/modules/lib/openthread ZEPHYR_SEGGER_MODULE_DIR=/home/johangarrido/ncs/modules/debug/segger ZEPHYR_TINYCBOR_MODULE_DIR=/home/johangarrido/ncs/modules/lib/tinycbor ZEPHYR_TINYCRYPT_MODULE_DIR=/home/johangarrido/ncs/modules/crypto/tinycrypt ZEPHYR_LITTLEFS_MODULE_DIR=/home/johangarrido/ncs/modules/fs/littlefs ZEPHYR_MIPI-SYS-T_MODULE_DIR=/home/johangarrido/ncs/modules/debug/mipi-sys-t ZEPHYR_NRF_HW_MODELS_MODULE_DIR=/home/johangarrido/ncs/modules/bsim_hw_models/nrf_hw_models ZEPHYR_TFM_MODULE_DIR=/home/johangarrido/ncs/modules/tee/tfm EXTRA_DTC_FLAGS= DTS_POST_CPP=/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/nrf52dk_nrf52832.dts.pre.tmp DTS_ROOT_BINDINGS=/home/johangarrido/ncs/nrf/dts/bindings?/home/johangarrido/ncs/zephyr/dts/bindings /usr/bin/python3.8 /home/johangarrido/ncs/zephyr/scripts/kconfig/hardenconfig.py /home/johangarrido/ncs/zephyr/Kconfig
pool = console
#############################################
# Phony custom command for CMakeFiles/config-sanitycheck
build CMakeFiles/config-sanitycheck: phony zephyr/.config
#############################################
# Custom command for CMakeFiles/menuconfig_ses
build CMakeFiles/menuconfig_ses: CUSTOM_COMMAND
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/kconfig && /usr/bin/cmake -E env ZEPHYR_BASE=/home/johangarrido/ncs/zephyr ZEPHYR_TOOLCHAIN_VARIANT=gnuarmemb PYTHON_EXECUTABLE=/usr/bin/python3.8 srctree=/home/johangarrido/ncs/zephyr KERNELVERSION=0x2046300 KCONFIG_CONFIG=/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/.config ARCH=arm ARCH_DIR=/home/johangarrido/ncs/zephyr/arch BOARD_DIR=/home/johangarrido/ncs/zephyr/boards/arm/nrf52dk_nrf52832 SHIELD_AS_LIST= KCONFIG_BINARY_DIR=/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/Kconfig TOOLCHAIN_KCONFIG_DIR=/home/johangarrido/ncs/zephyr/cmake/toolchain/gnuarmemb EDT_PICKLE=/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/edt.pickle ZEPHYR_NRF_MODULE_DIR=/home/johangarrido/ncs/nrf ZEPHYR_MCUBOOT_MODULE_DIR=/home/johangarrido/ncs/bootloader/mcuboot ZEPHYR_MCUMGR_MODULE_DIR=/home/johangarrido/ncs/modules/lib/mcumgr ZEPHYR_NRFXLIB_MODULE_DIR=/home/johangarrido/ncs/nrfxlib ZEPHYR_CMSIS_MODULE_DIR=/home/johangarrido/ncs/modules/hal/cmsis ZEPHYR_CANOPENNODE_MODULE_DIR=/home/johangarrido/ncs/modules/lib/canopennode ZEPHYR_CIVETWEB_MODULE_DIR=/home/johangarrido/ncs/modules/lib/civetweb ZEPHYR_FATFS_MODULE_DIR=/home/johangarrido/ncs/modules/fs/fatfs ZEPHYR_NORDIC_MODULE_DIR=/home/johangarrido/ncs/modules/hal/nordic ZEPHYR_ST_MODULE_DIR=/home/johangarrido/ncs/modules/hal/st ZEPHYR_LIBMETAL_MODULE_DIR=/home/johangarrido/ncs/modules/hal/libmetal ZEPHYR_LVGL_MODULE_DIR=/home/johangarrido/ncs/modules/lib/gui/lvgl ZEPHYR_MBEDTLS_MODULE_DIR=/home/johangarrido/ncs/modules/crypto/mbedtls ZEPHYR_OPEN-AMP_MODULE_DIR=/home/johangarrido/ncs/modules/lib/open-amp ZEPHYR_LORAMAC-NODE_MODULE_DIR=/home/johangarrido/ncs/modules/lib/loramac-node ZEPHYR_OPENTHREAD_MODULE_DIR=/home/johangarrido/ncs/modules/lib/openthread ZEPHYR_SEGGER_MODULE_DIR=/home/johangarrido/ncs/modules/debug/segger ZEPHYR_TINYCBOR_MODULE_DIR=/home/johangarrido/ncs/modules/lib/tinycbor ZEPHYR_TINYCRYPT_MODULE_DIR=/home/johangarrido/ncs/modules/crypto/tinycrypt ZEPHYR_LITTLEFS_MODULE_DIR=/home/johangarrido/ncs/modules/fs/littlefs ZEPHYR_MIPI-SYS-T_MODULE_DIR=/home/johangarrido/ncs/modules/debug/mipi-sys-t ZEPHYR_NRF_HW_MODELS_MODULE_DIR=/home/johangarrido/ncs/modules/bsim_hw_models/nrf_hw_models ZEPHYR_TFM_MODULE_DIR=/home/johangarrido/ncs/modules/tee/tfm EXTRA_DTC_FLAGS= DTS_POST_CPP=/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/nrf52dk_nrf52832.dts.pre.tmp DTS_ROOT_BINDINGS=/home/johangarrido/ncs/nrf/dts/bindings?/home/johangarrido/ncs/zephyr/dts/bindings /usr/bin/python3.8 /home/johangarrido/SES/html/configure_nordic_project_menuconfig.py /home/johangarrido/ncs/zephyr/Kconfig
pool = console
#############################################
# Custom command for CMakeFiles/guiconfig
build CMakeFiles/guiconfig: CUSTOM_COMMAND
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/kconfig && /usr/bin/cmake -E env ZEPHYR_BASE=/home/johangarrido/ncs/zephyr ZEPHYR_TOOLCHAIN_VARIANT=gnuarmemb PYTHON_EXECUTABLE=/usr/bin/python3.8 srctree=/home/johangarrido/ncs/zephyr KERNELVERSION=0x2046300 KCONFIG_CONFIG=/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/.config ARCH=arm ARCH_DIR=/home/johangarrido/ncs/zephyr/arch BOARD_DIR=/home/johangarrido/ncs/zephyr/boards/arm/nrf52dk_nrf52832 SHIELD_AS_LIST= KCONFIG_BINARY_DIR=/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/Kconfig TOOLCHAIN_KCONFIG_DIR=/home/johangarrido/ncs/zephyr/cmake/toolchain/gnuarmemb EDT_PICKLE=/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/edt.pickle ZEPHYR_NRF_MODULE_DIR=/home/johangarrido/ncs/nrf ZEPHYR_MCUBOOT_MODULE_DIR=/home/johangarrido/ncs/bootloader/mcuboot ZEPHYR_MCUMGR_MODULE_DIR=/home/johangarrido/ncs/modules/lib/mcumgr ZEPHYR_NRFXLIB_MODULE_DIR=/home/johangarrido/ncs/nrfxlib ZEPHYR_CMSIS_MODULE_DIR=/home/johangarrido/ncs/modules/hal/cmsis ZEPHYR_CANOPENNODE_MODULE_DIR=/home/johangarrido/ncs/modules/lib/canopennode ZEPHYR_CIVETWEB_MODULE_DIR=/home/johangarrido/ncs/modules/lib/civetweb ZEPHYR_FATFS_MODULE_DIR=/home/johangarrido/ncs/modules/fs/fatfs ZEPHYR_NORDIC_MODULE_DIR=/home/johangarrido/ncs/modules/hal/nordic ZEPHYR_ST_MODULE_DIR=/home/johangarrido/ncs/modules/hal/st ZEPHYR_LIBMETAL_MODULE_DIR=/home/johangarrido/ncs/modules/hal/libmetal ZEPHYR_LVGL_MODULE_DIR=/home/johangarrido/ncs/modules/lib/gui/lvgl ZEPHYR_MBEDTLS_MODULE_DIR=/home/johangarrido/ncs/modules/crypto/mbedtls ZEPHYR_OPEN-AMP_MODULE_DIR=/home/johangarrido/ncs/modules/lib/open-amp ZEPHYR_LORAMAC-NODE_MODULE_DIR=/home/johangarrido/ncs/modules/lib/loramac-node ZEPHYR_OPENTHREAD_MODULE_DIR=/home/johangarrido/ncs/modules/lib/openthread ZEPHYR_SEGGER_MODULE_DIR=/home/johangarrido/ncs/modules/debug/segger ZEPHYR_TINYCBOR_MODULE_DIR=/home/johangarrido/ncs/modules/lib/tinycbor ZEPHYR_TINYCRYPT_MODULE_DIR=/home/johangarrido/ncs/modules/crypto/tinycrypt ZEPHYR_LITTLEFS_MODULE_DIR=/home/johangarrido/ncs/modules/fs/littlefs ZEPHYR_MIPI-SYS-T_MODULE_DIR=/home/johangarrido/ncs/modules/debug/mipi-sys-t ZEPHYR_NRF_HW_MODELS_MODULE_DIR=/home/johangarrido/ncs/modules/bsim_hw_models/nrf_hw_models ZEPHYR_TFM_MODULE_DIR=/home/johangarrido/ncs/modules/tee/tfm EXTRA_DTC_FLAGS= DTS_POST_CPP=/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/nrf52dk_nrf52832.dts.pre.tmp DTS_ROOT_BINDINGS=/home/johangarrido/ncs/nrf/dts/bindings?/home/johangarrido/ncs/zephyr/dts/bindings /usr/bin/python3.8 /home/johangarrido/ncs/zephyr/scripts/kconfig/guiconfig.py /home/johangarrido/ncs/zephyr/Kconfig
pool = console
# =============================================================================
# Write statements declared in CMakeLists.txt:
# /home/johangarrido/ncs/zephyr/cmake/app/boilerplate.cmake
# =============================================================================
#############################################
# Utility command for rebuild_cache
build zephyr/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr && /usr/bin/cmake -S/home/johangarrido/samples/array_send_ble -B/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832
DESC = Running CMake to regenerate build system...
pool = console
restat = 1
build zephyr/rebuild_cache: phony zephyr/CMakeFiles/rebuild_cache.util
#############################################
# Utility command for edit_cache
build zephyr/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
DESC = No interactive CMake dialog available...
restat = 1
build zephyr/edit_cache: phony zephyr/CMakeFiles/edit_cache.util
#############################################
# Utility command for run
build zephyr/run: phony zephyr/CMakeFiles/run
#############################################
# Utility command for syscall_list_h_target
build zephyr/syscall_list_h_target: phony zephyr/CMakeFiles/syscall_list_h_target zephyr/include/generated/syscall_dispatch.c zephyr/include/generated/syscall_list.h zephyr/parse_syscalls_target
# =============================================================================
# Object build statements for STATIC_LIBRARY target zephyr
#############################################
# Order-only phony target for zephyr
build cmake_object_order_depends_target_zephyr: phony || zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers
build zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/cbprintf.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/lib/os/crc32_sw.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/crc32_sw.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/crc32_sw.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/lib/os/crc16_sw.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/crc16_sw.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/crc16_sw.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/lib/os/crc8_sw.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/crc8_sw.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/crc8_sw.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/lib/os/crc7_sw.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/crc7_sw.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/crc7_sw.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/lib/os/dec.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/dec.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/dec.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/lib/os/fdtable.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/fdtable.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/fdtable.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/lib/os/hex.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/hex.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/hex.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/lib/os/mempool.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/mempool.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/mempool.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/lib/os/notify.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/notify.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/notify.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/printk.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/lib/os/onoff.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/onoff.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/onoff.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/lib/os/rb.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/rb.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/rb.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/sem.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/thread_entry.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/lib/os/timeutil.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/timeutil.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/timeutil.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/lib/os/work_q.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/work_q.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/work_q.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/lib/os/heap.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/heap.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/heap.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/lib/os/heap-validate.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/heap-validate.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/heap-validate.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/lib/os/cbprintf_complete.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/lib/os
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj: C_COMPILER__zephyr zephyr/misc/generated/configs.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/misc/generated
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/soc/arm/nordic_nrf/validate_base_addresses.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/validate_base_addresses.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/soc/arm/nordic_nrf/validate_base_addresses.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/soc/arm/nordic_nrf
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/soc/arm/nordic_nrf/validate_enabled_instances.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/validate_enabled_instances.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/soc/arm/nordic_nrf/validate_enabled_instances.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/soc/arm/nordic_nrf
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/subsys/bluetooth/services/dis.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/subsys/bluetooth/services/dis.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/bluetooth/services/dis.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/bluetooth/services
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/subsys/bluetooth/services/bas.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/subsys/bluetooth/services/bas.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/bluetooth/services/bas.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/bluetooth/services
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/subsys/net/lib/utils/addr_utils.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/subsys/net/lib/utils/addr_utils.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/net/lib/utils/addr_utils.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/net/lib/utils
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/subsys/power/power.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/subsys/power/power.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/power/power.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/power
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/subsys/power/reboot.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/subsys/power/reboot.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/power/reboot.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/power
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/subsys/power/policy/policy_residency.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/subsys/power/policy/policy_residency.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/subsys/power/policy/policy_residency.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/subsys/power/policy
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/drivers/console/uart_console.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/drivers/console/uart_console.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/drivers/console/uart_console.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/drivers/console
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/drivers/clock_control/clock_control_nrf.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/drivers/clock_control/clock_control_nrf.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/drivers/clock_control/clock_control_nrf.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/drivers/clock_control
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/drivers/timer/sys_clock_init.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/drivers/timer/sys_clock_init.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/drivers/timer/sys_clock_init.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/drivers/timer
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/drivers/timer/nrf_rtc_timer.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/zephyr/drivers/timer/nrf_rtc_timer.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/drivers/timer/nrf_rtc_timer.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/drivers/timer
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/debug/segger/rtt/SEGGER_RTT.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/modules/debug/segger/rtt/SEGGER_RTT.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/debug/segger/rtt/SEGGER_RTT.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/debug/segger/rtt
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/debug/segger/rtt/SEGGER_RTT_zephyr.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/modules/debug/segger/rtt/SEGGER_RTT_zephyr.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/debug/segger/rtt/SEGGER_RTT_zephyr.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/debug/segger/rtt
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/utils.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/utils.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/utils.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/ecc_dh.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/ecc_dh.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/ecc_dh.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/ecc.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/ecc.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/ecc.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/aes_decrypt.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/aes_decrypt.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/aes_decrypt.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/aes_encrypt.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/aes_encrypt.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/aes_encrypt.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
build zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/cmac_mode.c.obj: C_COMPILER__zephyr /home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/cmac_mode.c || cmake_object_order_depends_target_zephyr
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/cmac_mode.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_PDB = zephyr/libzephyr.pdb
# =============================================================================
# Link build statements for STATIC_LIBRARY target zephyr
#############################################
# Link the static library zephyr/libzephyr.a
build zephyr/libzephyr.a: C_STATIC_LIBRARY_LINKER__zephyr zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/crc32_sw.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/crc16_sw.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/crc8_sw.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/crc7_sw.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/dec.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/fdtable.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/hex.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/mempool.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/notify.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/printk.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/onoff.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/rb.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/sem.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/thread_entry.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/timeutil.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/work_q.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/heap.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/heap-validate.c.obj zephyr/CMakeFiles/zephyr.dir/lib/os/cbprintf_complete.c.obj zephyr/CMakeFiles/zephyr.dir/misc/generated/configs.c.obj zephyr/CMakeFiles/zephyr.dir/soc/arm/nordic_nrf/validate_base_addresses.c.obj zephyr/CMakeFiles/zephyr.dir/soc/arm/nordic_nrf/validate_enabled_instances.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/bluetooth/services/dis.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/bluetooth/services/bas.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/net/lib/utils/addr_utils.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/power/power.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/power/reboot.c.obj zephyr/CMakeFiles/zephyr.dir/subsys/power/policy/policy_residency.c.obj zephyr/CMakeFiles/zephyr.dir/drivers/console/uart_console.c.obj zephyr/CMakeFiles/zephyr.dir/drivers/clock_control/clock_control_nrf.c.obj zephyr/CMakeFiles/zephyr.dir/drivers/timer/sys_clock_init.c.obj zephyr/CMakeFiles/zephyr.dir/drivers/timer/nrf_rtc_timer.c.obj zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/debug/segger/rtt/SEGGER_RTT.c.obj zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/debug/segger/rtt/SEGGER_RTT_zephyr.c.obj zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/utils.c.obj zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/ecc_dh.c.obj zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/ecc.c.obj zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/aes_decrypt.c.obj zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/aes_encrypt.c.obj zephyr/CMakeFiles/zephyr.dir/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/source/cmac_mode.c.obj || zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers
OBJECT_DIR = zephyr/CMakeFiles/zephyr.dir
POST_BUILD = :
PRE_LINK = :
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr.dir/zephyr.pdb
TARGET_FILE = zephyr/libzephyr.a
TARGET_PDB = zephyr/libzephyr.pdb
#############################################
# Utility command for linker_pass_final_script_target
build zephyr/linker_pass_final_script_target: phony zephyr/CMakeFiles/linker_pass_final_script_target zephyr/linker_pass_final.cmd zephyr/zephyr_generated_headers zephyr/zephyr_prebuilt.elf
#############################################
# Utility command for driver_validation_h_target
build zephyr/driver_validation_h_target: phony zephyr/CMakeFiles/driver_validation_h_target zephyr/include/generated/driver-validation.h zephyr/parse_syscalls_target
#############################################
# Utility command for kobj_types_h_target
build zephyr/kobj_types_h_target: phony zephyr/CMakeFiles/kobj_types_h_target zephyr/include/generated/kobj-types-enum.h zephyr/include/generated/otype-to-str.h zephyr/parse_syscalls_target
#############################################
# Utility command for parse_syscalls_target
build zephyr/parse_syscalls_target: phony zephyr/CMakeFiles/parse_syscalls_target zephyr/misc/generated/syscalls.json zephyr/misc/generated/struct_tags.json zephyr/misc/generated/syscalls_subdirs.trigger zephyr/misc/generated/syscalls_links/include zephyr/misc/generated/syscalls_links/include_app_memory zephyr/misc/generated/syscalls_links/include_arch zephyr/misc/generated/syscalls_links/include_audio zephyr/misc/generated/syscalls_links/include_bluetooth zephyr/misc/generated/syscalls_links/include_canbus zephyr/misc/generated/syscalls_links/include_cmsis_rtos_v1 zephyr/misc/generated/syscalls_links/include_cmsis_rtos_v2 zephyr/misc/generated/syscalls_links/include_console zephyr/misc/generated/syscalls_links/include_crypto zephyr/misc/generated/syscalls_links/include_data zephyr/misc/generated/syscalls_links/include_debug zephyr/misc/generated/syscalls_links/include_devicetree zephyr/misc/generated/syscalls_links/include_dfu zephyr/misc/generated/syscalls_links/include_disk zephyr/misc/generated/syscalls_links/include_display zephyr/misc/generated/syscalls_links/include_drivers zephyr/misc/generated/syscalls_links/include_dt-bindings zephyr/misc/generated/syscalls_links/include_fs zephyr/misc/generated/syscalls_links/include_linker zephyr/misc/generated/syscalls_links/include_logging zephyr/misc/generated/syscalls_links/include_lorawan zephyr/misc/generated/syscalls_links/include_mgmt zephyr/misc/generated/syscalls_links/include_net zephyr/misc/generated/syscalls_links/include_posix zephyr/misc/generated/syscalls_links/include_power zephyr/misc/generated/syscalls_links/include_random zephyr/misc/generated/syscalls_links/include_settings zephyr/misc/generated/syscalls_links/include_shell zephyr/misc/generated/syscalls_links/include_stats zephyr/misc/generated/syscalls_links/include_storage zephyr/misc/generated/syscalls_links/include_sys zephyr/misc/generated/syscalls_links/include_timing zephyr/misc/generated/syscalls_links/include_toolchain zephyr/misc/generated/syscalls_links/include_tracing zephyr/misc/generated/syscalls_links/include_usb zephyr/misc/generated/syscalls_links/include_zephyr zephyr/misc/generated/syscalls_links/include_arch_arc zephyr/misc/generated/syscalls_links/include_arch_arm zephyr/misc/generated/syscalls_links/include_arch_common zephyr/misc/generated/syscalls_links/include_arch_nios2 zephyr/misc/generated/syscalls_links/include_arch_posix zephyr/misc/generated/syscalls_links/include_arch_riscv zephyr/misc/generated/syscalls_links/include_arch_sparc zephyr/misc/generated/syscalls_links/include_arch_x86 zephyr/misc/generated/syscalls_links/include_arch_xtensa zephyr/misc/generated/syscalls_links/include_arch_arc_v2 zephyr/misc/generated/syscalls_links/include_arch_arc_v2_mpu zephyr/misc/generated/syscalls_links/include_arch_arc_v2_secureshield zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32 zephyr/misc/generated/syscalls_links/include_arch_arm_aarch64 zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_a_r zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_m zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_r zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_a_r_scripts zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_m_mpu zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_m_scripts zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_r_scripts zephyr/misc/generated/syscalls_links/include_arch_arm_aarch64_scripts zephyr/misc/generated/syscalls_links/include_arch_riscv_common zephyr/misc/generated/syscalls_links/include_arch_riscv_riscv-privilege zephyr/misc/generated/syscalls_links/include_arch_x86_ia32 zephyr/misc/generated/syscalls_links/include_arch_x86_intel64 zephyr/misc/generated/syscalls_links/include_bluetooth_mesh zephyr/misc/generated/syscalls_links/include_bluetooth_services zephyr/misc/generated/syscalls_links/include_drivers_adc zephyr/misc/generated/syscalls_links/include_drivers_bluetooth zephyr/misc/generated/syscalls_links/include_drivers_clock_control zephyr/misc/generated/syscalls_links/include_drivers_console zephyr/misc/generated/syscalls_links/include_drivers_ec_host_cmd_periph zephyr/misc/generated/syscalls_links/include_drivers_gpio zephyr/misc/generated/syscalls_links/include_drivers_ieee802154 zephyr/misc/generated/syscalls_links/include_drivers_interrupt_controller zephyr/misc/generated/syscalls_links/include_drivers_led zephyr/misc/generated/syscalls_links/include_drivers_modem zephyr/misc/generated/syscalls_links/include_drivers_pcie zephyr/misc/generated/syscalls_links/include_drivers_rtc zephyr/misc/generated/syscalls_links/include_drivers_sensor zephyr/misc/generated/syscalls_links/include_drivers_timer zephyr/misc/generated/syscalls_links/include_drivers_uart zephyr/misc/generated/syscalls_links/include_drivers_usb zephyr/misc/generated/syscalls_links/include_drivers_pcie_endpoint zephyr/misc/generated/syscalls_links/include_dt-bindings_clock zephyr/misc/generated/syscalls_links/include_dt-bindings_dac zephyr/misc/generated/syscalls_links/include_dt-bindings_display zephyr/misc/generated/syscalls_links/include_dt-bindings_dma zephyr/misc/generated/syscalls_links/include_dt-bindings_espi zephyr/misc/generated/syscalls_links/include_dt-bindings_gpio zephyr/misc/generated/syscalls_links/include_dt-bindings_i2c zephyr/misc/generated/syscalls_links/include_dt-bindings_interrupt-controller zephyr/misc/generated/syscalls_links/include_dt-bindings_led zephyr/misc/generated/syscalls_links/include_dt-bindings_lora zephyr/misc/generated/syscalls_links/include_dt-bindings_pcie zephyr/misc/generated/syscalls_links/include_dt-bindings_pinctrl zephyr/misc/generated/syscalls_links/include_dt-bindings_pwm zephyr/misc/generated/syscalls_links/include_dt-bindings_rdc zephyr/misc/generated/syscalls_links/include_dt-bindings_usb zephyr/misc/generated/syscalls_links/include_mgmt_mcumgr zephyr/misc/generated/syscalls_links/include_posix_arpa zephyr/misc/generated/syscalls_links/include_posix_net zephyr/misc/generated/syscalls_links/include_posix_netinet zephyr/misc/generated/syscalls_links/include_posix_sys zephyr/misc/generated/syscalls_links/include_usb_class
#############################################
# Utility command for zephyr_generated_headers
build zephyr/zephyr_generated_headers: phony zephyr/offsets_h
# =============================================================================
# Object build statements for OBJECT_LIBRARY target offsets
#############################################
# Order-only phony target for offsets
build cmake_object_order_depends_target_offsets: phony || zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/syscall_list_h_target
build zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj: C_COMPILER__offsets /home/johangarrido/ncs/zephyr/arch/arm/core/offsets/offsets.c || cmake_object_order_depends_target_offsets
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/zephyr/kernel/include -I/home/johangarrido/ncs/zephyr/arch/arm/include -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/offsets.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets
TARGET_COMPILE_PDB = zephyr/CMakeFiles/offsets.dir/
TARGET_PDB = ""
#############################################
# Object library offsets
build zephyr/offsets: phony zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj
# =============================================================================
# Object build statements for EXECUTABLE target zephyr_final
#############################################
# Order-only phony target for zephyr_final
build cmake_object_order_depends_target_zephyr_final: phony || cmake_object_order_depends_target_..__modules__hal__nordic cmake_object_order_depends_target_..__nrf__drivers__mpsl__clock_control cmake_object_order_depends_target_..__nrf__lib__fatal_error cmake_object_order_depends_target_..__nrf__lib__multithreading_lock cmake_object_order_depends_target_..__nrf__subsys__bluetooth__controller cmake_object_order_depends_target_..__nrf__subsys__mpsl cmake_object_order_depends_target_app cmake_object_order_depends_target_arch__arm__core__aarch32 cmake_object_order_depends_target_arch__arm__core__aarch32__cortex_m cmake_object_order_depends_target_arch__arm__core__aarch32__cortex_m__mpu cmake_object_order_depends_target_arch__common cmake_object_order_depends_target_drivers__entropy cmake_object_order_depends_target_drivers__gpio cmake_object_order_depends_target_drivers__serial cmake_object_order_depends_target_isr_tables cmake_object_order_depends_target_kernel cmake_object_order_depends_target_lib__libc__minimal cmake_object_order_depends_target_lib__posix cmake_object_order_depends_target_soc__arm__common__cortex_m cmake_object_order_depends_target_soc__arm__nordic_nrf__nrf52 cmake_object_order_depends_target_subsys__bluetooth__common cmake_object_order_depends_target_subsys__bluetooth__host cmake_object_order_depends_target_subsys__net cmake_object_order_depends_target_subsys__random cmake_object_order_depends_target_zephyr zephyr/driver_validation_h_target zephyr/isr_tables.c zephyr/kobj_types_h_target zephyr/linker_pass_final_script_target zephyr/syscall_list_h_target zephyr/zephyr_prebuilt.elf
build zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj: C_COMPILER__zephyr_final /home/johangarrido/ncs/zephyr/misc/empty_file.c || cmake_object_order_depends_target_zephyr_final
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr_final.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr_final.dir/misc
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr_final.dir/
TARGET_PDB = zephyr/zephyr.pdb
build zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj: C_COMPILER__zephyr_final zephyr/isr_tables.c || cmake_object_order_depends_target_zephyr_final
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr_final.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr_final.dir
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr_final.dir/
TARGET_PDB = zephyr/zephyr.pdb
# =============================================================================
# Link build statements for EXECUTABLE target zephyr_final
#############################################
# Link the executable zephyr/zephyr.elf
build zephyr/zephyr.elf zephyr/zephyr.hex zephyr/zephyr.bin zephyr/zephyr.lst zephyr/zephyr.stat: C_EXECUTABLE_LINKER__zephyr_final zephyr/CMakeFiles/zephyr_final.dir/misc/empty_file.c.obj zephyr/CMakeFiles/zephyr_final.dir/isr_tables.c.obj | zephyr/linker_pass_final.cmd app/libapp.a zephyr/libzephyr.a zephyr/arch/common/libarch__common.a zephyr/arch/arch/arm/core/aarch32/libarch__arm__core__aarch32.a zephyr/arch/arch/arm/core/aarch32/cortex_m/libarch__arm__core__aarch32__cortex_m.a zephyr/arch/arch/arm/core/aarch32/cortex_m/mpu/libarch__arm__core__aarch32__cortex_m__mpu.a zephyr/lib/libc/minimal/liblib__libc__minimal.a zephyr/lib/posix/liblib__posix.a zephyr/soc/arm/common/cortex_m/libsoc__arm__common__cortex_m.a zephyr/soc/arm/nordic_nrf/nrf52/libsoc__arm__nordic_nrf__nrf52.a zephyr/subsys/bluetooth/common/libsubsys__bluetooth__common.a zephyr/subsys/bluetooth/host/libsubsys__bluetooth__host.a zephyr/subsys/net/libsubsys__net.a zephyr/subsys/random/libsubsys__random.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/entropy/libdrivers__entropy.a modules/nrf/lib/multithreading_lock/lib..__nrf__lib__multithreading_lock.a modules/nrf/lib/fatal_error/lib..__nrf__lib__fatal_error.a modules/nrf/subsys/bluetooth/controller/lib..__nrf__subsys__bluetooth__controller.a modules/nrf/subsys/mpsl/lib..__nrf__subsys__mpsl.a modules/nrf/drivers/mpsl/clock_control/lib..__nrf__drivers__mpsl__clock_control.a modules/nordic/lib..__modules__hal__nordic.a zephyr/kernel/libkernel.a zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj zephyr/arch/common/libisr_tables.a /home/johangarrido/ncs/nrfxlib/mpsl/lib/cortex-m4/soft-float/libmpsl.a /home/johangarrido/ncs/nrfxlib/softdevice_controller/lib/cortex-m4/soft-float/libsoftdevice_controller_s132.a zephyr/linker_pass_final.cmd || app/libapp.a modules/nordic/lib..__modules__hal__nordic.a modules/nrf/drivers/mpsl/clock_control/lib..__nrf__drivers__mpsl__clock_control.a modules/nrf/lib/fatal_error/lib..__nrf__lib__fatal_error.a modules/nrf/lib/multithreading_lock/lib..__nrf__lib__multithreading_lock.a modules/nrf/subsys/bluetooth/controller/lib..__nrf__subsys__bluetooth__controller.a modules/nrf/subsys/mpsl/lib..__nrf__subsys__mpsl.a zephyr/arch/arch/arm/core/aarch32/cortex_m/libarch__arm__core__aarch32__cortex_m.a zephyr/arch/arch/arm/core/aarch32/cortex_m/mpu/libarch__arm__core__aarch32__cortex_m__mpu.a zephyr/arch/arch/arm/core/aarch32/libarch__arm__core__aarch32.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/driver_validation_h_target zephyr/drivers/entropy/libdrivers__entropy.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/serial/libdrivers__serial.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/minimal/liblib__libc__minimal.a zephyr/lib/posix/liblib__posix.a zephyr/libzephyr.a zephyr/linker_pass_final_script_target zephyr/soc/arm/common/cortex_m/libsoc__arm__common__cortex_m.a zephyr/soc/arm/nordic_nrf/nrf52/libsoc__arm__nordic_nrf__nrf52.a zephyr/subsys/bluetooth/common/libsubsys__bluetooth__common.a zephyr/subsys/bluetooth/host/libsubsys__bluetooth__host.a zephyr/subsys/net/libsubsys__net.a zephyr/subsys/random/libsubsys__random.a zephyr/syscall_list_h_target zephyr/zephyr_prebuilt.elf
LINK_LIBRARIES = -Wl,-T zephyr/linker_pass_final.cmd -Wl,-Map=/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/zephyr_final.map -Wl,--whole-archive app/libapp.a zephyr/libzephyr.a zephyr/arch/common/libarch__common.a zephyr/arch/arch/arm/core/aarch32/libarch__arm__core__aarch32.a zephyr/arch/arch/arm/core/aarch32/cortex_m/libarch__arm__core__aarch32__cortex_m.a zephyr/arch/arch/arm/core/aarch32/cortex_m/mpu/libarch__arm__core__aarch32__cortex_m__mpu.a zephyr/lib/libc/minimal/liblib__libc__minimal.a zephyr/lib/posix/liblib__posix.a zephyr/soc/arm/common/cortex_m/libsoc__arm__common__cortex_m.a zephyr/soc/arm/nordic_nrf/nrf52/libsoc__arm__nordic_nrf__nrf52.a zephyr/subsys/bluetooth/common/libsubsys__bluetooth__common.a zephyr/subsys/bluetooth/host/libsubsys__bluetooth__host.a zephyr/subsys/net/libsubsys__net.a zephyr/subsys/random/libsubsys__random.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/entropy/libdrivers__entropy.a modules/nrf/lib/multithreading_lock/lib..__nrf__lib__multithreading_lock.a modules/nrf/lib/fatal_error/lib..__nrf__lib__fatal_error.a modules/nrf/subsys/bluetooth/controller/lib..__nrf__subsys__bluetooth__controller.a modules/nrf/subsys/mpsl/lib..__nrf__subsys__mpsl.a modules/nrf/drivers/mpsl/clock_control/lib..__nrf__drivers__mpsl__clock_control.a modules/nordic/lib..__modules__hal__nordic.a -Wl,--no-whole-archive zephyr/kernel/libkernel.a zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj -L"/opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/thumb/v7e-m/nofp" -L/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr -lgcc zephyr/arch/common/libisr_tables.a -mcpu=cortex-m4 -mthumb -mabi=aapcs -Wl,--gc-sections -Wl,--build-id=none -Wl,--sort-common=descending -Wl,--sort-section=alignment -Wl,-u,_OffsetAbsSyms -Wl,-u,_ConfigAbsSyms -nostdlib -static -no-pie -Wl,-X -Wl,-N -Wl,--orphan-handling=warn /home/johangarrido/ncs/nrfxlib/mpsl/lib/cortex-m4/soft-float/libmpsl.a /home/johangarrido/ncs/nrfxlib/softdevice_controller/lib/cortex-m4/soft-float/libsoftdevice_controller_s132.a
OBJECT_DIR = zephyr/CMakeFiles/zephyr_final.dir
POST_BUILD = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr && /usr/bin/cmake -E rename zephyr_final.map zephyr.map && /opt/gnuarmemb/bin/arm-none-eabi-objcopy --gap-fill 0xff --output-target=ihex --remove-section=.comment --remove-section=COMMON --remove-section=.eh_frame zephyr.elf zephyr.hex && /opt/gnuarmemb/bin/arm-none-eabi-objcopy --gap-fill 0xff --output-target=binary --remove-section=.comment --remove-section=COMMON --remove-section=.eh_frame zephyr.elf zephyr.bin && /opt/gnuarmemb/bin/arm-none-eabi-objdump -d -S zephyr.elf > zephyr.lst && /opt/gnuarmemb/bin/arm-none-eabi-readelf -e zephyr.elf > zephyr.stat
PRE_LINK = :
RESTAT = 1
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr_final.dir/
TARGET_FILE = zephyr/zephyr.elf
TARGET_PDB = zephyr/zephyr.pdb
#############################################
# Utility command for offsets_h
build zephyr/offsets_h: phony zephyr/CMakeFiles/offsets_h zephyr/include/generated/offsets.h zephyr/offsets
#############################################
# Utility command for linker_script_target
build zephyr/linker_script_target: phony zephyr/CMakeFiles/linker_script_target zephyr/linker.cmd zephyr/zephyr_generated_headers
# =============================================================================
# Object build statements for EXECUTABLE target zephyr_prebuilt
#############################################
# Order-only phony target for zephyr_prebuilt
build cmake_object_order_depends_target_zephyr_prebuilt: phony || cmake_object_order_depends_target_..__modules__hal__nordic cmake_object_order_depends_target_..__nrf__drivers__mpsl__clock_control cmake_object_order_depends_target_..__nrf__lib__fatal_error cmake_object_order_depends_target_..__nrf__lib__multithreading_lock cmake_object_order_depends_target_..__nrf__subsys__bluetooth__controller cmake_object_order_depends_target_..__nrf__subsys__mpsl cmake_object_order_depends_target_app cmake_object_order_depends_target_arch__arm__core__aarch32 cmake_object_order_depends_target_arch__arm__core__aarch32__cortex_m cmake_object_order_depends_target_arch__arm__core__aarch32__cortex_m__mpu cmake_object_order_depends_target_arch__common cmake_object_order_depends_target_drivers__entropy cmake_object_order_depends_target_drivers__gpio cmake_object_order_depends_target_drivers__serial cmake_object_order_depends_target_isr_tables cmake_object_order_depends_target_kernel cmake_object_order_depends_target_lib__libc__minimal cmake_object_order_depends_target_lib__posix cmake_object_order_depends_target_offsets cmake_object_order_depends_target_soc__arm__common__cortex_m cmake_object_order_depends_target_soc__arm__nordic_nrf__nrf52 cmake_object_order_depends_target_subsys__bluetooth__common cmake_object_order_depends_target_subsys__bluetooth__host cmake_object_order_depends_target_subsys__net cmake_object_order_depends_target_subsys__random cmake_object_order_depends_target_zephyr zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/linker_script_target zephyr/syscall_list_h_target
build zephyr/CMakeFiles/zephyr_prebuilt.dir/misc/empty_file.c.obj: C_COMPILER__zephyr_prebuilt /home/johangarrido/ncs/zephyr/misc/empty_file.c || cmake_object_order_depends_target_zephyr_prebuilt
DEFINES = -DBUILD_VERSION=v2.4.0-ncs1-1710-g5a7b4eb71047 -DKERNEL -DNRF52832_XXAA -DUSE_PARTITION_MANAGER=0 -D_FORTIFY_SOURCE=2 -D__PROGRAM_START -D__ZEPHYR__=1
DEP_FILE = zephyr/CMakeFiles/zephyr_prebuilt.dir/misc/empty_file.c.obj.d
FLAGS = -Os -imacros /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/autoconf.h -ffreestanding -fno-common -g -mcpu=cortex-m4 -mthumb -mabi=aapcs -imacros /home/johangarrido/ncs/zephyr/include/toolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wno-main -Wno-pointer-sign -Wpointer-arith -Wno-address-of-packed-member -Wno-unused-but-set-variable -Werror=implicit-int -fno-asynchronous-unwind-tables -fno-pie -fno-pic -fno-strict-overflow -fno-reorder-functions -fno-defer-pop -fmacro-prefix-map=/home/johangarrido/samples/array_send_ble=CMAKE_SOURCE_DIR -fmacro-prefix-map=/home/johangarrido/ncs/zephyr=ZEPHYR_BASE -fmacro-prefix-map=/home/johangarrido/ncs=WEST_TOPDIR -ffunction-sections -fdata-sections -std=c99 -nostdinc
INCLUDES = -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -Izephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -isystem /home/johangarrido/ncs/zephyr/lib/libc/minimal/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include -isystem /opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/include-fixed
OBJECT_DIR = zephyr/CMakeFiles/zephyr_prebuilt.dir
OBJECT_FILE_DIR = zephyr/CMakeFiles/zephyr_prebuilt.dir/misc
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr_prebuilt.dir/
TARGET_PDB = zephyr/zephyr_prebuilt.pdb
# =============================================================================
# Link build statements for EXECUTABLE target zephyr_prebuilt
#############################################
# Link the executable zephyr/zephyr_prebuilt.elf
build zephyr/zephyr_prebuilt.elf: C_EXECUTABLE_LINKER__zephyr_prebuilt zephyr/CMakeFiles/zephyr_prebuilt.dir/misc/empty_file.c.obj | zephyr/linker.cmd app/libapp.a zephyr/libzephyr.a zephyr/arch/common/libarch__common.a zephyr/arch/arch/arm/core/aarch32/libarch__arm__core__aarch32.a zephyr/arch/arch/arm/core/aarch32/cortex_m/libarch__arm__core__aarch32__cortex_m.a zephyr/arch/arch/arm/core/aarch32/cortex_m/mpu/libarch__arm__core__aarch32__cortex_m__mpu.a zephyr/lib/libc/minimal/liblib__libc__minimal.a zephyr/lib/posix/liblib__posix.a zephyr/soc/arm/common/cortex_m/libsoc__arm__common__cortex_m.a zephyr/soc/arm/nordic_nrf/nrf52/libsoc__arm__nordic_nrf__nrf52.a zephyr/subsys/bluetooth/common/libsubsys__bluetooth__common.a zephyr/subsys/bluetooth/host/libsubsys__bluetooth__host.a zephyr/subsys/net/libsubsys__net.a zephyr/subsys/random/libsubsys__random.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/entropy/libdrivers__entropy.a modules/nrf/lib/multithreading_lock/lib..__nrf__lib__multithreading_lock.a modules/nrf/lib/fatal_error/lib..__nrf__lib__fatal_error.a modules/nrf/subsys/bluetooth/controller/lib..__nrf__subsys__bluetooth__controller.a modules/nrf/subsys/mpsl/lib..__nrf__subsys__mpsl.a modules/nrf/drivers/mpsl/clock_control/lib..__nrf__drivers__mpsl__clock_control.a modules/nordic/lib..__modules__hal__nordic.a zephyr/kernel/libkernel.a zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj zephyr/arch/common/libisr_tables.a /home/johangarrido/ncs/nrfxlib/mpsl/lib/cortex-m4/soft-float/libmpsl.a /home/johangarrido/ncs/nrfxlib/softdevice_controller/lib/cortex-m4/soft-float/libsoftdevice_controller_s132.a zephyr/linker.cmd || app/libapp.a modules/nordic/lib..__modules__hal__nordic.a modules/nrf/drivers/mpsl/clock_control/lib..__nrf__drivers__mpsl__clock_control.a modules/nrf/lib/fatal_error/lib..__nrf__lib__fatal_error.a modules/nrf/lib/multithreading_lock/lib..__nrf__lib__multithreading_lock.a modules/nrf/subsys/bluetooth/controller/lib..__nrf__subsys__bluetooth__controller.a modules/nrf/subsys/mpsl/lib..__nrf__subsys__mpsl.a zephyr/arch/arch/arm/core/aarch32/cortex_m/libarch__arm__core__aarch32__cortex_m.a zephyr/arch/arch/arm/core/aarch32/cortex_m/mpu/libarch__arm__core__aarch32__cortex_m__mpu.a zephyr/arch/arch/arm/core/aarch32/libarch__arm__core__aarch32.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/driver_validation_h_target zephyr/drivers/entropy/libdrivers__entropy.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/serial/libdrivers__serial.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/minimal/liblib__libc__minimal.a zephyr/lib/posix/liblib__posix.a zephyr/libzephyr.a zephyr/linker_script_target zephyr/offsets zephyr/soc/arm/common/cortex_m/libsoc__arm__common__cortex_m.a zephyr/soc/arm/nordic_nrf/nrf52/libsoc__arm__nordic_nrf__nrf52.a zephyr/subsys/bluetooth/common/libsubsys__bluetooth__common.a zephyr/subsys/bluetooth/host/libsubsys__bluetooth__host.a zephyr/subsys/net/libsubsys__net.a zephyr/subsys/random/libsubsys__random.a zephyr/syscall_list_h_target
LINK_LIBRARIES = -Wl,-T zephyr/linker.cmd -Wl,-Map=/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/zephyr_prebuilt.map -Wl,--whole-archive app/libapp.a zephyr/libzephyr.a zephyr/arch/common/libarch__common.a zephyr/arch/arch/arm/core/aarch32/libarch__arm__core__aarch32.a zephyr/arch/arch/arm/core/aarch32/cortex_m/libarch__arm__core__aarch32__cortex_m.a zephyr/arch/arch/arm/core/aarch32/cortex_m/mpu/libarch__arm__core__aarch32__cortex_m__mpu.a zephyr/lib/libc/minimal/liblib__libc__minimal.a zephyr/lib/posix/liblib__posix.a zephyr/soc/arm/common/cortex_m/libsoc__arm__common__cortex_m.a zephyr/soc/arm/nordic_nrf/nrf52/libsoc__arm__nordic_nrf__nrf52.a zephyr/subsys/bluetooth/common/libsubsys__bluetooth__common.a zephyr/subsys/bluetooth/host/libsubsys__bluetooth__host.a zephyr/subsys/net/libsubsys__net.a zephyr/subsys/random/libsubsys__random.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/serial/libdrivers__serial.a zephyr/drivers/entropy/libdrivers__entropy.a modules/nrf/lib/multithreading_lock/lib..__nrf__lib__multithreading_lock.a modules/nrf/lib/fatal_error/lib..__nrf__lib__fatal_error.a modules/nrf/subsys/bluetooth/controller/lib..__nrf__subsys__bluetooth__controller.a modules/nrf/subsys/mpsl/lib..__nrf__subsys__mpsl.a modules/nrf/drivers/mpsl/clock_control/lib..__nrf__drivers__mpsl__clock_control.a modules/nordic/lib..__modules__hal__nordic.a -Wl,--no-whole-archive zephyr/kernel/libkernel.a zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj -L"/opt/gnuarmemb/bin/../lib/gcc/arm-none-eabi/9.2.1/thumb/v7e-m/nofp" -L/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr -lgcc -Wl,--print-memory-usage zephyr/arch/common/libisr_tables.a -mcpu=cortex-m4 -mthumb -mabi=aapcs -Wl,--gc-sections -Wl,--build-id=none -Wl,--sort-common=descending -Wl,--sort-section=alignment -Wl,-u,_OffsetAbsSyms -Wl,-u,_ConfigAbsSyms -nostdlib -static -no-pie -Wl,-X -Wl,-N -Wl,--orphan-handling=warn /home/johangarrido/ncs/nrfxlib/mpsl/lib/cortex-m4/soft-float/libmpsl.a /home/johangarrido/ncs/nrfxlib/softdevice_controller/lib/cortex-m4/soft-float/libsoftdevice_controller_s132.a
OBJECT_DIR = zephyr/CMakeFiles/zephyr_prebuilt.dir
POST_BUILD = :
PRE_LINK = :
TARGET_COMPILE_PDB = zephyr/CMakeFiles/zephyr_prebuilt.dir/
TARGET_FILE = zephyr/zephyr_prebuilt.elf
TARGET_PDB = zephyr/zephyr_prebuilt.pdb
#############################################
# Custom command for zephyr/CMakeFiles/run
build zephyr/CMakeFiles/run: CUSTOM_COMMAND
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr && /usr/bin/cmake -E echo =================================================== Emulation/Simulation\ not\ supported\ with\ this\ board. ===================================================
#############################################
# Phony custom command for zephyr/CMakeFiles/syscall_list_h_target
build zephyr/CMakeFiles/syscall_list_h_target: phony zephyr/include/generated/syscall_list.h || zephyr/parse_syscalls_target
#############################################
# Custom command for zephyr/include/generated/syscall_dispatch.c
build zephyr/include/generated/syscall_dispatch.c zephyr/include/generated/syscall_list.h: CUSTOM_COMMAND || zephyr/parse_syscalls_target
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr && /usr/bin/python3.8 /home/johangarrido/ncs/zephyr/scripts/gen_syscalls.py --json-file /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/misc/generated/syscalls.json --base-output include/generated/syscalls --syscall-dispatch include/generated/syscall_dispatch.c --syscall-list /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/syscall_list.h --split-type k_timeout_t
DESC = Generating include/generated/syscall_dispatch.c, include/generated/syscall_list.h
restat = 1
#############################################
# Phony custom command for zephyr/CMakeFiles/linker_pass_final_script_target
build zephyr/CMakeFiles/linker_pass_final_script_target: phony zephyr/linker_pass_final.cmd || app/libapp.a modules/nordic/lib..__modules__hal__nordic.a modules/nrf/drivers/mpsl/clock_control/lib..__nrf__drivers__mpsl__clock_control.a modules/nrf/lib/fatal_error/lib..__nrf__lib__fatal_error.a modules/nrf/lib/multithreading_lock/lib..__nrf__lib__multithreading_lock.a modules/nrf/subsys/bluetooth/controller/lib..__nrf__subsys__bluetooth__controller.a modules/nrf/subsys/mpsl/lib..__nrf__subsys__mpsl.a zephyr/arch/arch/arm/core/aarch32/cortex_m/libarch__arm__core__aarch32__cortex_m.a zephyr/arch/arch/arm/core/aarch32/cortex_m/mpu/libarch__arm__core__aarch32__cortex_m__mpu.a zephyr/arch/arch/arm/core/aarch32/libarch__arm__core__aarch32.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/driver_validation_h_target zephyr/drivers/entropy/libdrivers__entropy.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/serial/libdrivers__serial.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/minimal/liblib__libc__minimal.a zephyr/lib/posix/liblib__posix.a zephyr/libzephyr.a zephyr/linker_script_target zephyr/offsets zephyr/offsets_h zephyr/parse_syscalls_target zephyr/soc/arm/common/cortex_m/libsoc__arm__common__cortex_m.a zephyr/soc/arm/nordic_nrf/nrf52/libsoc__arm__nordic_nrf__nrf52.a zephyr/subsys/bluetooth/common/libsubsys__bluetooth__common.a zephyr/subsys/bluetooth/host/libsubsys__bluetooth__host.a zephyr/subsys/net/libsubsys__net.a zephyr/subsys/random/libsubsys__random.a zephyr/syscall_list_h_target zephyr/zephyr_generated_headers zephyr/zephyr_prebuilt.elf
#############################################
# Custom command for zephyr/linker_pass_final.cmd
build zephyr/linker_pass_final.cmd: CUSTOM_COMMAND /home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52/linker.ld zephyr/zephyr_prebuilt.elf || app/libapp.a modules/nordic/lib..__modules__hal__nordic.a modules/nrf/drivers/mpsl/clock_control/lib..__nrf__drivers__mpsl__clock_control.a modules/nrf/lib/fatal_error/lib..__nrf__lib__fatal_error.a modules/nrf/lib/multithreading_lock/lib..__nrf__lib__multithreading_lock.a modules/nrf/subsys/bluetooth/controller/lib..__nrf__subsys__bluetooth__controller.a modules/nrf/subsys/mpsl/lib..__nrf__subsys__mpsl.a zephyr/arch/arch/arm/core/aarch32/cortex_m/libarch__arm__core__aarch32__cortex_m.a zephyr/arch/arch/arm/core/aarch32/cortex_m/mpu/libarch__arm__core__aarch32__cortex_m__mpu.a zephyr/arch/arch/arm/core/aarch32/libarch__arm__core__aarch32.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/driver_validation_h_target zephyr/drivers/entropy/libdrivers__entropy.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/serial/libdrivers__serial.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/minimal/liblib__libc__minimal.a zephyr/lib/posix/liblib__posix.a zephyr/libzephyr.a zephyr/linker_script_target zephyr/offsets zephyr/offsets_h zephyr/parse_syscalls_target zephyr/soc/arm/common/cortex_m/libsoc__arm__common__cortex_m.a zephyr/soc/arm/nordic_nrf/nrf52/libsoc__arm__nordic_nrf__nrf52.a zephyr/subsys/bluetooth/common/libsubsys__bluetooth__common.a zephyr/subsys/bluetooth/host/libsubsys__bluetooth__host.a zephyr/subsys/net/libsubsys__net.a zephyr/subsys/random/libsubsys__random.a zephyr/syscall_list_h_target zephyr/zephyr_generated_headers zephyr/zephyr_prebuilt.elf
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr && /opt/gnuarmemb/bin/arm-none-eabi-gcc -x assembler-with-cpp -undef -MD -MF linker_pass_final.cmd.dep -MT zephyr/linker_pass_final.cmd -D_LINKER -D_ASMLANGUAGE -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -I/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/lib/libc/minimal/include -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -D__GCC_LINKER_CMD__ -DUSE_PARTITION_MANAGER=0 -DLINKER_PASS2 -E /home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52/linker.ld -P -o linker_pass_final.cmd
DESC = Generating linker_pass_final.cmd
depfile = /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/linker_pass_final.cmd.dep
restat = 1
#############################################
# Phony custom command for zephyr/CMakeFiles/driver_validation_h_target
build zephyr/CMakeFiles/driver_validation_h_target: phony zephyr/include/generated/driver-validation.h || zephyr/parse_syscalls_target
#############################################
# Custom command for zephyr/include/generated/driver-validation.h
build zephyr/include/generated/driver-validation.h: CUSTOM_COMMAND /home/johangarrido/ncs/zephyr/scripts/gen_kobject_list.py || zephyr/parse_syscalls_target
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr && /usr/bin/python3.8 /home/johangarrido/ncs/zephyr/scripts/gen_kobject_list.py --validation-output /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/driver-validation.h --include /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/misc/generated/struct_tags.json
DESC = Generating include/generated/driver-validation.h
restat = 1
#############################################
# Phony custom command for zephyr/CMakeFiles/kobj_types_h_target
build zephyr/CMakeFiles/kobj_types_h_target: phony zephyr/include/generated/kobj-types-enum.h zephyr/include/generated/otype-to-str.h || zephyr/parse_syscalls_target
#############################################
# Custom command for zephyr/include/generated/kobj-types-enum.h
build zephyr/include/generated/kobj-types-enum.h zephyr/include/generated/otype-to-str.h: CUSTOM_COMMAND /home/johangarrido/ncs/zephyr/scripts/gen_kobject_list.py || zephyr/parse_syscalls_target
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr && /usr/bin/python3.8 /home/johangarrido/ncs/zephyr/scripts/gen_kobject_list.py --kobj-types-output /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/kobj-types-enum.h --kobj-otype-output /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/otype-to-str.h --kobj-size-output /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/otype-to-size.h --include /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/misc/generated/struct_tags.json
DESC = Generating include/generated/kobj-types-enum.h, include/generated/otype-to-str.h
restat = 1
#############################################
# Phony custom command for zephyr/CMakeFiles/parse_syscalls_target
build zephyr/CMakeFiles/parse_syscalls_target: phony zephyr/misc/generated/syscalls.json zephyr/misc/generated/struct_tags.json
#############################################
# Custom command for zephyr/misc/generated/syscalls.json
build zephyr/misc/generated/syscalls.json zephyr/misc/generated/struct_tags.json: CUSTOM_COMMAND zephyr/misc/generated/syscalls_subdirs.trigger
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr && /usr/bin/python3.8 /home/johangarrido/ncs/zephyr/scripts/parse_syscalls.py --include /home/johangarrido/ncs/zephyr/include --include /home/johangarrido/ncs/zephyr/drivers --include /home/johangarrido/ncs/zephyr/subsys/net --json-file /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/misc/generated/syscalls.json --tag-struct-file /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/misc/generated/struct_tags.json
DESC = Generating misc/generated/syscalls.json, misc/generated/struct_tags.json
restat = 1
#############################################
# Custom command for zephyr/misc/generated/syscalls_subdirs.trigger
build zephyr/misc/generated/syscalls_subdirs.trigger: CUSTOM_COMMAND zephyr/misc/generated/syscalls_links/include zephyr/misc/generated/syscalls_links/include_app_memory zephyr/misc/generated/syscalls_links/include_arch zephyr/misc/generated/syscalls_links/include_audio zephyr/misc/generated/syscalls_links/include_bluetooth zephyr/misc/generated/syscalls_links/include_canbus zephyr/misc/generated/syscalls_links/include_cmsis_rtos_v1 zephyr/misc/generated/syscalls_links/include_cmsis_rtos_v2 zephyr/misc/generated/syscalls_links/include_console zephyr/misc/generated/syscalls_links/include_crypto zephyr/misc/generated/syscalls_links/include_data zephyr/misc/generated/syscalls_links/include_debug zephyr/misc/generated/syscalls_links/include_devicetree zephyr/misc/generated/syscalls_links/include_dfu zephyr/misc/generated/syscalls_links/include_disk zephyr/misc/generated/syscalls_links/include_display zephyr/misc/generated/syscalls_links/include_drivers zephyr/misc/generated/syscalls_links/include_dt-bindings zephyr/misc/generated/syscalls_links/include_fs zephyr/misc/generated/syscalls_links/include_linker zephyr/misc/generated/syscalls_links/include_logging zephyr/misc/generated/syscalls_links/include_lorawan zephyr/misc/generated/syscalls_links/include_mgmt zephyr/misc/generated/syscalls_links/include_net zephyr/misc/generated/syscalls_links/include_posix zephyr/misc/generated/syscalls_links/include_power zephyr/misc/generated/syscalls_links/include_random zephyr/misc/generated/syscalls_links/include_settings zephyr/misc/generated/syscalls_links/include_shell zephyr/misc/generated/syscalls_links/include_stats zephyr/misc/generated/syscalls_links/include_storage zephyr/misc/generated/syscalls_links/include_sys zephyr/misc/generated/syscalls_links/include_timing zephyr/misc/generated/syscalls_links/include_toolchain zephyr/misc/generated/syscalls_links/include_tracing zephyr/misc/generated/syscalls_links/include_usb zephyr/misc/generated/syscalls_links/include_zephyr zephyr/misc/generated/syscalls_links/include_arch_arc zephyr/misc/generated/syscalls_links/include_arch_arm zephyr/misc/generated/syscalls_links/include_arch_common zephyr/misc/generated/syscalls_links/include_arch_nios2 zephyr/misc/generated/syscalls_links/include_arch_posix zephyr/misc/generated/syscalls_links/include_arch_riscv zephyr/misc/generated/syscalls_links/include_arch_sparc zephyr/misc/generated/syscalls_links/include_arch_x86 zephyr/misc/generated/syscalls_links/include_arch_xtensa zephyr/misc/generated/syscalls_links/include_arch_arc_v2 zephyr/misc/generated/syscalls_links/include_arch_arc_v2_mpu zephyr/misc/generated/syscalls_links/include_arch_arc_v2_secureshield zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32 zephyr/misc/generated/syscalls_links/include_arch_arm_aarch64 zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_a_r zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_m zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_r zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_a_r_scripts zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_m_mpu zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_m_scripts zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_r_scripts zephyr/misc/generated/syscalls_links/include_arch_arm_aarch64_scripts zephyr/misc/generated/syscalls_links/include_arch_riscv_common zephyr/misc/generated/syscalls_links/include_arch_riscv_riscv-privilege zephyr/misc/generated/syscalls_links/include_arch_x86_ia32 zephyr/misc/generated/syscalls_links/include_arch_x86_intel64 zephyr/misc/generated/syscalls_links/include_bluetooth_mesh zephyr/misc/generated/syscalls_links/include_bluetooth_services zephyr/misc/generated/syscalls_links/include_drivers_adc zephyr/misc/generated/syscalls_links/include_drivers_bluetooth zephyr/misc/generated/syscalls_links/include_drivers_clock_control zephyr/misc/generated/syscalls_links/include_drivers_console zephyr/misc/generated/syscalls_links/include_drivers_ec_host_cmd_periph zephyr/misc/generated/syscalls_links/include_drivers_gpio zephyr/misc/generated/syscalls_links/include_drivers_ieee802154 zephyr/misc/generated/syscalls_links/include_drivers_interrupt_controller zephyr/misc/generated/syscalls_links/include_drivers_led zephyr/misc/generated/syscalls_links/include_drivers_modem zephyr/misc/generated/syscalls_links/include_drivers_pcie zephyr/misc/generated/syscalls_links/include_drivers_rtc zephyr/misc/generated/syscalls_links/include_drivers_sensor zephyr/misc/generated/syscalls_links/include_drivers_timer zephyr/misc/generated/syscalls_links/include_drivers_uart zephyr/misc/generated/syscalls_links/include_drivers_usb zephyr/misc/generated/syscalls_links/include_drivers_pcie_endpoint zephyr/misc/generated/syscalls_links/include_dt-bindings_clock zephyr/misc/generated/syscalls_links/include_dt-bindings_dac zephyr/misc/generated/syscalls_links/include_dt-bindings_display zephyr/misc/generated/syscalls_links/include_dt-bindings_dma zephyr/misc/generated/syscalls_links/include_dt-bindings_espi zephyr/misc/generated/syscalls_links/include_dt-bindings_gpio zephyr/misc/generated/syscalls_links/include_dt-bindings_i2c zephyr/misc/generated/syscalls_links/include_dt-bindings_interrupt-controller zephyr/misc/generated/syscalls_links/include_dt-bindings_led zephyr/misc/generated/syscalls_links/include_dt-bindings_lora zephyr/misc/generated/syscalls_links/include_dt-bindings_pcie zephyr/misc/generated/syscalls_links/include_dt-bindings_pinctrl zephyr/misc/generated/syscalls_links/include_dt-bindings_pwm zephyr/misc/generated/syscalls_links/include_dt-bindings_rdc zephyr/misc/generated/syscalls_links/include_dt-bindings_usb zephyr/misc/generated/syscalls_links/include_mgmt_mcumgr zephyr/misc/generated/syscalls_links/include_posix_arpa zephyr/misc/generated/syscalls_links/include_posix_net zephyr/misc/generated/syscalls_links/include_posix_netinet zephyr/misc/generated/syscalls_links/include_posix_sys zephyr/misc/generated/syscalls_links/include_usb_class
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr && /usr/bin/python3.8 /home/johangarrido/ncs/zephyr/scripts/subfolder_list.py --directory /home/johangarrido/ncs/zephyr/include --out-file /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/misc/generated/syscalls_subdirs.txt --trigger /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/misc/generated/syscalls_subdirs.trigger --create-links /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/misc/generated/syscalls_links
DESC = Generating misc/generated/syscalls_subdirs.trigger
restat = 1
#############################################
# Custom command for zephyr/misc/generated/syscalls_links/include
build zephyr/misc/generated/syscalls_links/include zephyr/misc/generated/syscalls_links/include_app_memory zephyr/misc/generated/syscalls_links/include_arch zephyr/misc/generated/syscalls_links/include_audio zephyr/misc/generated/syscalls_links/include_bluetooth zephyr/misc/generated/syscalls_links/include_canbus zephyr/misc/generated/syscalls_links/include_cmsis_rtos_v1 zephyr/misc/generated/syscalls_links/include_cmsis_rtos_v2 zephyr/misc/generated/syscalls_links/include_console zephyr/misc/generated/syscalls_links/include_crypto zephyr/misc/generated/syscalls_links/include_data zephyr/misc/generated/syscalls_links/include_debug zephyr/misc/generated/syscalls_links/include_devicetree zephyr/misc/generated/syscalls_links/include_dfu zephyr/misc/generated/syscalls_links/include_disk zephyr/misc/generated/syscalls_links/include_display zephyr/misc/generated/syscalls_links/include_drivers zephyr/misc/generated/syscalls_links/include_dt-bindings zephyr/misc/generated/syscalls_links/include_fs zephyr/misc/generated/syscalls_links/include_linker zephyr/misc/generated/syscalls_links/include_logging zephyr/misc/generated/syscalls_links/include_lorawan zephyr/misc/generated/syscalls_links/include_mgmt zephyr/misc/generated/syscalls_links/include_net zephyr/misc/generated/syscalls_links/include_posix zephyr/misc/generated/syscalls_links/include_power zephyr/misc/generated/syscalls_links/include_random zephyr/misc/generated/syscalls_links/include_settings zephyr/misc/generated/syscalls_links/include_shell zephyr/misc/generated/syscalls_links/include_stats zephyr/misc/generated/syscalls_links/include_storage zephyr/misc/generated/syscalls_links/include_sys zephyr/misc/generated/syscalls_links/include_timing zephyr/misc/generated/syscalls_links/include_toolchain zephyr/misc/generated/syscalls_links/include_tracing zephyr/misc/generated/syscalls_links/include_usb zephyr/misc/generated/syscalls_links/include_zephyr zephyr/misc/generated/syscalls_links/include_arch_arc zephyr/misc/generated/syscalls_links/include_arch_arm zephyr/misc/generated/syscalls_links/include_arch_common zephyr/misc/generated/syscalls_links/include_arch_nios2 zephyr/misc/generated/syscalls_links/include_arch_posix zephyr/misc/generated/syscalls_links/include_arch_riscv zephyr/misc/generated/syscalls_links/include_arch_sparc zephyr/misc/generated/syscalls_links/include_arch_x86 zephyr/misc/generated/syscalls_links/include_arch_xtensa zephyr/misc/generated/syscalls_links/include_arch_arc_v2 zephyr/misc/generated/syscalls_links/include_arch_arc_v2_mpu zephyr/misc/generated/syscalls_links/include_arch_arc_v2_secureshield zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32 zephyr/misc/generated/syscalls_links/include_arch_arm_aarch64 zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_a_r zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_m zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_r zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_a_r_scripts zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_m_mpu zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_m_scripts zephyr/misc/generated/syscalls_links/include_arch_arm_aarch32_cortex_r_scripts zephyr/misc/generated/syscalls_links/include_arch_arm_aarch64_scripts zephyr/misc/generated/syscalls_links/include_arch_riscv_common zephyr/misc/generated/syscalls_links/include_arch_riscv_riscv-privilege zephyr/misc/generated/syscalls_links/include_arch_x86_ia32 zephyr/misc/generated/syscalls_links/include_arch_x86_intel64 zephyr/misc/generated/syscalls_links/include_bluetooth_mesh zephyr/misc/generated/syscalls_links/include_bluetooth_services zephyr/misc/generated/syscalls_links/include_drivers_adc zephyr/misc/generated/syscalls_links/include_drivers_bluetooth zephyr/misc/generated/syscalls_links/include_drivers_clock_control zephyr/misc/generated/syscalls_links/include_drivers_console zephyr/misc/generated/syscalls_links/include_drivers_ec_host_cmd_periph zephyr/misc/generated/syscalls_links/include_drivers_gpio zephyr/misc/generated/syscalls_links/include_drivers_ieee802154 zephyr/misc/generated/syscalls_links/include_drivers_interrupt_controller zephyr/misc/generated/syscalls_links/include_drivers_led zephyr/misc/generated/syscalls_links/include_drivers_modem zephyr/misc/generated/syscalls_links/include_drivers_pcie zephyr/misc/generated/syscalls_links/include_drivers_rtc zephyr/misc/generated/syscalls_links/include_drivers_sensor zephyr/misc/generated/syscalls_links/include_drivers_timer zephyr/misc/generated/syscalls_links/include_drivers_uart zephyr/misc/generated/syscalls_links/include_drivers_usb zephyr/misc/generated/syscalls_links/include_drivers_pcie_endpoint zephyr/misc/generated/syscalls_links/include_dt-bindings_clock zephyr/misc/generated/syscalls_links/include_dt-bindings_dac zephyr/misc/generated/syscalls_links/include_dt-bindings_display zephyr/misc/generated/syscalls_links/include_dt-bindings_dma zephyr/misc/generated/syscalls_links/include_dt-bindings_espi zephyr/misc/generated/syscalls_links/include_dt-bindings_gpio zephyr/misc/generated/syscalls_links/include_dt-bindings_i2c zephyr/misc/generated/syscalls_links/include_dt-bindings_interrupt-controller zephyr/misc/generated/syscalls_links/include_dt-bindings_led zephyr/misc/generated/syscalls_links/include_dt-bindings_lora zephyr/misc/generated/syscalls_links/include_dt-bindings_pcie zephyr/misc/generated/syscalls_links/include_dt-bindings_pinctrl zephyr/misc/generated/syscalls_links/include_dt-bindings_pwm zephyr/misc/generated/syscalls_links/include_dt-bindings_rdc zephyr/misc/generated/syscalls_links/include_dt-bindings_usb zephyr/misc/generated/syscalls_links/include_mgmt_mcumgr zephyr/misc/generated/syscalls_links/include_posix_arpa zephyr/misc/generated/syscalls_links/include_posix_net zephyr/misc/generated/syscalls_links/include_posix_netinet zephyr/misc/generated/syscalls_links/include_posix_sys zephyr/misc/generated/syscalls_links/include_usb_class: CUSTOM_COMMAND
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr && /usr/bin/cmake -E echo
DESC = Preparing syscall dependency handling
restat = 1
#############################################
# Custom command for zephyr/isr_tables.c
build zephyr/isr_tables.c: CUSTOM_COMMAND zephyr/zephyr_prebuilt.elf || app/libapp.a modules/nordic/lib..__modules__hal__nordic.a modules/nrf/drivers/mpsl/clock_control/lib..__nrf__drivers__mpsl__clock_control.a modules/nrf/lib/fatal_error/lib..__nrf__lib__fatal_error.a modules/nrf/lib/multithreading_lock/lib..__nrf__lib__multithreading_lock.a modules/nrf/subsys/bluetooth/controller/lib..__nrf__subsys__bluetooth__controller.a modules/nrf/subsys/mpsl/lib..__nrf__subsys__mpsl.a zephyr/arch/arch/arm/core/aarch32/cortex_m/libarch__arm__core__aarch32__cortex_m.a zephyr/arch/arch/arm/core/aarch32/cortex_m/mpu/libarch__arm__core__aarch32__cortex_m__mpu.a zephyr/arch/arch/arm/core/aarch32/libarch__arm__core__aarch32.a zephyr/arch/common/libarch__common.a zephyr/arch/common/libisr_tables.a zephyr/driver_validation_h_target zephyr/drivers/entropy/libdrivers__entropy.a zephyr/drivers/gpio/libdrivers__gpio.a zephyr/drivers/serial/libdrivers__serial.a zephyr/kernel/libkernel.a zephyr/kobj_types_h_target zephyr/lib/libc/minimal/liblib__libc__minimal.a zephyr/lib/posix/liblib__posix.a zephyr/libzephyr.a zephyr/linker_pass_final_script_target zephyr/linker_script_target zephyr/offsets zephyr/offsets_h zephyr/parse_syscalls_target zephyr/soc/arm/common/cortex_m/libsoc__arm__common__cortex_m.a zephyr/soc/arm/nordic_nrf/nrf52/libsoc__arm__nordic_nrf__nrf52.a zephyr/subsys/bluetooth/common/libsubsys__bluetooth__common.a zephyr/subsys/bluetooth/host/libsubsys__bluetooth__host.a zephyr/subsys/net/libsubsys__net.a zephyr/subsys/random/libsubsys__random.a zephyr/syscall_list_h_target zephyr/zephyr_generated_headers zephyr/zephyr_prebuilt.elf
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr && /opt/gnuarmemb/bin/arm-none-eabi-objcopy --input-target=elf32-littlearm --output-target=binary --only-section=.intList /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/zephyr_prebuilt.elf isrList.bin && /usr/bin/python3.8 /home/johangarrido/ncs/zephyr/arch/common/gen_isr_tables.py --output-source isr_tables.c --kernel /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/zephyr_prebuilt.elf --intlist isrList.bin --sw-isr-table --vector-table
DESC = Generating isr_tables.c
restat = 1
#############################################
# Phony custom command for zephyr/CMakeFiles/offsets_h
build zephyr/CMakeFiles/offsets_h: phony zephyr/include/generated/offsets.h || zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets zephyr/parse_syscalls_target zephyr/syscall_list_h_target
#############################################
# Custom command for zephyr/include/generated/offsets.h
build zephyr/include/generated/offsets.h: CUSTOM_COMMAND zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj || zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets zephyr/parse_syscalls_target zephyr/syscall_list_h_target
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr && /usr/bin/python3.8 /home/johangarrido/ncs/zephyr/scripts/gen_offset_header.py -i /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/CMakeFiles/offsets.dir/arch/arm/core/offsets/offsets.c.obj -o /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated/offsets.h
DESC = Generating include/generated/offsets.h
restat = 1
#############################################
# Phony custom command for zephyr/CMakeFiles/linker_script_target
build zephyr/CMakeFiles/linker_script_target: phony zephyr/linker.cmd || zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets zephyr/offsets_h zephyr/parse_syscalls_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers
#############################################
# Custom command for zephyr/linker.cmd
build zephyr/linker.cmd: CUSTOM_COMMAND /home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52/linker.ld || zephyr/driver_validation_h_target zephyr/kobj_types_h_target zephyr/offsets zephyr/offsets_h zephyr/parse_syscalls_target zephyr/syscall_list_h_target zephyr/zephyr_generated_headers
COMMAND = cd /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr && /opt/gnuarmemb/bin/arm-none-eabi-gcc -x assembler-with-cpp -undef -MD -MF linker.cmd.dep -MT zephyr/linker.cmd -D_LINKER -D_ASMLANGUAGE -I/home/johangarrido/ncs/nrf/drivers/mpsl/clock_control -I/home/johangarrido/ncs/zephyr/include -I/home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/include/generated -I/home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52 -I/home/johangarrido/ncs/zephyr/lib/libc/minimal/include -I/home/johangarrido/ncs/zephyr/subsys/bluetooth -I/home/johangarrido/ncs/nrf/include -I/home/johangarrido/ncs/nrf/lib/multithreading_lock/. -I/home/johangarrido/ncs/nrf/subsys/bluetooth/controller/. -I/home/johangarrido/ncs/nrfxlib/mpsl/include -I/home/johangarrido/ncs/nrfxlib/softdevice_controller/include -I/home/johangarrido/ncs/modules/hal/cmsis/CMSIS/Core/Include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/drivers/include -I/home/johangarrido/ncs/modules/hal/nordic/nrfx/mdk -I/home/johangarrido/ncs/modules/hal/nordic/. -I/home/johangarrido/ncs/modules/debug/segger/rtt -I/home/johangarrido/ncs/modules/crypto/tinycrypt/lib/include -D__GCC_LINKER_CMD__ -DUSE_PARTITION_MANAGER=0 -E /home/johangarrido/ncs/zephyr/soc/arm/nordic_nrf/nrf52/linker.ld -P -o linker.cmd
DESC = Generating linker.cmd
depfile = /home/johangarrido/samples/array_send_ble/build_nrf52dk_nrf52832/zephyr/linker.cmd.dep
restat = 1
# =============================================================================
# Write statements declared in CMakeLists.txt:
# /home/johangarrido/ncs/zephyr/CMakeLists.txt
# =============================================================================