Changeset 3e828ea in mainline for kernel/test/meson.build


Ignore:
Timestamp:
2019-09-23T12:49:29Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9be2358
Parents:
9259d20 (diff), 1a4ec93f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Jiri Svoboda <jiri@…> (2019-09-22 12:49:07)
git-committer:
Jiri Svoboda <jiri@…> (2019-09-23 12:49:29)
Message:

Merge changes from master, especially Meson build

File:
1 moved

Legend:

Unmodified
Added
Removed
  • kernel/test/meson.build

    r9259d20 r3e828ea  
    11#
    2 # Copyright (c) 2005 Martin Decky
     2# Copyright (c) 2019 Jiří Zárevúcky
    33# All rights reserved.
    44#
     
    2727#
    2828
    29 COMMON_CFLAGS += -msoft-float -mabi=32
    30 AS_PROLOG = .module softfloat;.abicalls;
    31 LDFLAGS += -Wl,--gc-sections
     29## Test sources
     30#
    3231
    33 ENDIANESS = BE
     32test_src = []
    3433
    35 BFD_ARCH = mips
    36 BFD_NAME = elf32-tradbigmips
     34if CONFIG_TEST
     35        test_src += files(
     36                'test.c',
     37                'atomic/atomic1.c',
     38                'fault/fault1.c',
     39                'mm/falloc1.c',
     40                'mm/falloc2.c',
     41                'mm/mapping1.c',
     42                'mm/slab1.c',
     43                'mm/slab2.c',
     44                'synch/semaphore1.c',
     45                'synch/semaphore2.c',
     46                'print/print1.c',
     47                'print/print2.c',
     48                'print/print3.c',
     49                'print/print4.c',
     50                'print/print5.c',
     51                'thread/thread1.c',
     52        )
    3753
    38 ifeq ($(MACHINE),bmalta)
    39         COMMON_CFLAGS += -march=4kc
     54        if KARCH == 'mips32'
     55                test_src += files('debug/mips1.c')
     56        else
     57                test_src += files('debug/mips1_skip.c')
     58        endif
     59
     60        if KARCH == 'ia64'
     61                test_src += files('mm/purge1.c')
     62        else
     63                test_src += files('mm/purge1_skip.c')
     64        endif
    4065endif
    41 
Note: See TracChangeset for help on using the changeset viewer.