Changeset e28175d in mainline for kernel/test/meson.build
- Timestamp:
- 2020-03-15T10:44:02Z (6 years ago)
- Parents:
- b401b33 (diff), 44dde42 (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:
- heiducteam <tristanided@…> (2020-03-15 10:44:02)
- git-committer:
- GitHub <noreply@…> (2020-03-15 10:44:02)
- 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
rb401b33 re28175d 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.
