mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-21 00:25:13 +08:00
36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
SPDX-License-Identifier: CC-BY-SA-4.0 OR BSD-2-Clause
|
|
build-type: script
|
|
cflags: []
|
|
copyrights:
|
|
- Copyright (C) 2020 embedded brains GmbH (http://www.embedded-brains.de)
|
|
cppflags: []
|
|
do-build: |
|
|
path = "testsuites/libtests/tar01/"
|
|
tar = path + "tar01.tar"
|
|
tar_gz = self.gzip(bld, tar)
|
|
tar_xz = self.xz(bld, tar)
|
|
tar_c, tar_h = self.bin2c(bld, tar)
|
|
tar_gz_c, tar_gz_h = self.bin2c(bld, tar_gz)
|
|
tar_xz_c, tar_xz_h = self.bin2c(bld, tar_xz)
|
|
objs = []
|
|
objs.append(self.cc(bld, bic, tar_c))
|
|
objs.append(self.cc(bld, bic, tar_gz_c))
|
|
objs.append(self.cc(bld, bic, tar_xz_c))
|
|
objs.append(self.cc(bld, bic, path + "init.c", deps=[tar_h, tar_gz_h, tar_xz_h], cppflags=bld.env.TEST_TAR01_CPPFLAGS))
|
|
objs.append(self.cc(bld, bic, "testsuites/psxtests/psxfile01/test_cat.c", target=path + "test_cat.o"))
|
|
self.link_cc(bld, bic, objs, "testsuites/libtests/tar01.exe")
|
|
do-configure: null
|
|
enabled-by:
|
|
- not: TEST_TAR01_EXCLUDE
|
|
includes:
|
|
- testsuites/libtests/tar01
|
|
ldflags: []
|
|
links: []
|
|
prepare-build: null
|
|
prepare-configure: null
|
|
stlib: []
|
|
type: build
|
|
use-after:
|
|
- z
|
|
use-before: []
|