blob: 1a708066f731e82eca3c68e40786af48be6af187 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001require pseudo.inc
2
Andrew Geissler475cb722020-07-10 16:00:51 -05003SRC_URI = "git://git.yoctoproject.org/pseudo;branch=oe-core \
Patrick Williamsc0f7c042017-02-23 20:41:17 -06004 file://0001-configure-Prune-PIE-flags.patch \
5 file://fallback-passwd \
6 file://fallback-group \
Brad Bishop316dfdd2018-06-25 12:45:53 -04007 "
Andrew Geisslerd159c7f2021-09-02 21:05:58 -05008SRC_URI:append:class-native = " \
9 http://downloads.yoctoproject.org/mirror/sources/pseudo-prebuilt-2.33.tar.xz;subdir=git/prebuilt;name=prebuilt \
10 file://older-glibc-symbols.patch"
11SRC_URI:append:class-nativesdk = " \
12 http://downloads.yoctoproject.org/mirror/sources/pseudo-prebuilt-2.33.tar.xz;subdir=git/prebuilt;name=prebuilt \
13 file://older-glibc-symbols.patch"
14SRC_URI[prebuilt.sha256sum] = "ed9f456856e9d86359f169f46a70ad7be4190d6040282b84c8d97b99072485aa"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015
Patrick Williams92b42cb2022-09-03 06:53:57 -050016SRCREV = "c9670c27ff67ab899007ce749254b16091577e55"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050017S = "${WORKDIR}/git"
Brad Bishop316dfdd2018-06-25 12:45:53 -040018PV = "1.9.0+git${SRCPV}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050019
Andrew Geissler517393d2023-01-13 08:55:19 -060020# largefile and 64bit time_t support adds these macros via compiler flags globally
21# remove them for pseudo since pseudo intercepts some of the functions which will be
22# aliased due to this e.g. open/open64 and it will complain about duplicate definitions
23# pseudo on 32bit systems is not much of use anyway and these features are not of much
24# use for it.
25TARGET_CC_ARCH:remove = "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64"
26
Brad Bishop79641f22019-09-10 07:20:22 -040027# error: use of undeclared identifier '_STAT_VER'
Patrick Williams213cb262021-08-07 19:21:33 -050028COMPATIBLE_HOST:libc-musl = 'null'