zephyr/samples
Inaky Perez-Gonzalez 3d498dd10c build: workaround build bug in tests
When an app uses a construct such as:

obj-y = main.o ../../../../samples/bluetooth/gatt/hrs.o

in its makefile, it causes said object module to be built in the
source tree, not in the object tree.

When building massively parallel, this usually resuls on the files
getting corrupted, leading to bugs such as:

https://jira.zephyrproject.org/browse/ZEP-2316
https://jira.zephyrproject.org/browse/ZEP-2317

src/../../../../samples/bluetooth/gatt/.gap.o.cmd:3: warning: NUL character seen; rest of line ignored
src/../../../../samples/bluetooth/gatt/.gap.o.cmd:4: warning: NUL character seen; rest of line ignored
src/../../../../samples/bluetooth/gatt/.gap.o.cmd:5: *** missing separator.  Stop.

as multiple build are trying to touch the same file in the source tree
and of course, race and causes a build bug.

We have known about this issue for a long time, but it requires
modifications in the build system that there is no time to tackle.

A suggested workaround is to include the source files into a local .c
file, so this is what this patch does, to remove the random noise.

Signed-off-by: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
2017-07-27 14:09:40 -04:00
..
application_development
basic
bluetooth build: workaround build bug in tests 2017-07-27 14:09:40 -04:00
boards kernel: make K_.*_INITIALIZER private to kernel 2017-07-10 11:44:56 -07:00
cpp_synchronization
drivers
grove
hello_world
mpu mpu_stack_guard_test: fix stack declaration 2017-07-26 05:53:14 -04:00
net build: workaround build bug in tests 2017-07-27 14:09:40 -04:00
nfc/nfc_hello
philosophers
sensor
subsys samples: usb: add usb.rst and README.rst for CDC ACM sample 2017-07-23 07:41:57 -04:00
synchronization
testing
kernel.rst
samples.rst