File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,10 +6,12 @@ if BUILD_XTENSA
66LOG_COMPILER = xt-run
77endif
88
9- AM_CFLAGS = \
9+ override AM_CFLAGS := \
10+ $(filter-out -nostdlib,$(AM_CFLAGS ) ) \
1011 $(SOF_INCDIR )
1112
12- AM_LDFLAGS =
13+ override AM_LDFLAGS := \
14+ $(filter-out -nostdlib,$(AM_LDFLAGS ) )
1315
1416if HAVE_CMOCKA_PREFIX
1517AM_CFLAGS += -I$(CMOCKA_PREFIX ) /include
@@ -26,9 +28,6 @@ if BUILD_HOST
2628AM_CFLAGS += -I../../src/arch/host/include
2729endif
2830
29- CFLAGS := $(filter-out -nostdlib,$(CFLAGS ) )
30- LDFLAGS := $(filter-out -nostdlib,$(LDFLAGS ) )
31-
3231LDADD = -lcmocka
3332
3433# memory allocator test
Original file line number Diff line number Diff line change 2626 * POSSIBILITY OF SUCH DAMAGE.
2727 *
2828 * Author: Slawomir Blauciak <slawomir.blauciak@linux.intel.com>
29+ * Janusz Jankowski <janusz.jankowski@linux.intel.com>
2930 */
3031
3132#include <stdint.h>
@@ -38,11 +39,13 @@ struct dma_sg_config;
3839int dma_copy_from_host (struct dma_copy * dc , struct dma_sg_config * host_sg ,
3940 int32_t host_offset , void * local_ptr , int32_t size )
4041{
42+ return 0 ;
4143}
4244
4345int dma_copy_to_host (struct dma_copy * dc , struct dma_sg_config * host_sg ,
4446 int32_t host_offset , void * local_ptr , int32_t size )
4547{
48+ return 0 ;
4649}
4750
4851void _trace_event_mbox_atomic (uint32_t e )
You can’t perform that action at this time.
0 commit comments