Changeset 3e828ea in mainline for kernel/test/meson.build
- Timestamp:
- 2019-09-23T12:49:29Z (6 years ago)
- 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)
- File:
-
- 1 moved
-
kernel/test/meson.build (moved) (moved from uspace/lib/c/arch/mips32eb/Makefile.common ) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/test/meson.build
r9259d20 r3e828ea 1 1 # 2 # Copyright (c) 20 05 Martin Decky2 # Copyright (c) 2019 Jiří Zárevúcky 3 3 # All rights reserved. 4 4 # … … 27 27 # 28 28 29 COMMON_CFLAGS += -msoft-float -mabi=32 30 AS_PROLOG = .module softfloat;.abicalls; 31 LDFLAGS += -Wl,--gc-sections 29 ## Test sources 30 # 32 31 33 ENDIANESS = BE 32 test_src = [] 34 33 35 BFD_ARCH = mips 36 BFD_NAME = elf32-tradbigmips 34 if 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 ) 37 53 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 40 65 endif 41
Note:
See TracChangeset
for help on using the changeset viewer.
