diff options
| -rw-r--r-- | meta/recipes-core/musl/libssp-nonshared.bb | 39 | ||||
| -rw-r--r-- | meta/recipes-core/musl/libssp-nonshared/ssp-local.c | 45 |
2 files changed, 84 insertions, 0 deletions
diff --git a/meta/recipes-core/musl/libssp-nonshared.bb b/meta/recipes-core/musl/libssp-nonshared.bb new file mode 100644 index 0000000000..458eafef52 --- /dev/null +++ b/meta/recipes-core/musl/libssp-nonshared.bb | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | # Copyright (C) 2018 Khem Raj <raj.khem@gmail.com> | ||
| 2 | # Released under the MIT license (see COPYING.MIT for the terms) | ||
| 3 | |||
| 4 | SUMMARY = "Minimal libssp_nonshared.a must needed for ssp to work with gcc on musl" | ||
| 5 | LICENSE = "GPL-3.0-with-GCC-exception" | ||
| 6 | LIC_FILES_CHKSUM = "file://ssp-local.c;beginline=1;endline=32;md5=c06d391208c0cfcbc541a6728ed65cc4" | ||
| 7 | SECTION = "libs" | ||
| 8 | |||
| 9 | SRC_URI = "file://ssp-local.c" | ||
| 10 | |||
| 11 | PATH_prepend = "${STAGING_BINDIR_TOOLCHAIN}.${STAGINGCC}:" | ||
| 12 | |||
| 13 | INHIBIT_DEFAULT_DEPS = "1" | ||
| 14 | |||
| 15 | STAGINGCC = "gcc-cross-initial-${TARGET_ARCH}" | ||
| 16 | STAGINGCC_class-nativesdk = "gcc-crosssdk-initial-${SDK_SYS}" | ||
| 17 | |||
| 18 | DEPENDS = "virtual/${TARGET_PREFIX}binutils \ | ||
| 19 | virtual/${TARGET_PREFIX}gcc-initial \ | ||
| 20 | " | ||
| 21 | |||
| 22 | do_configure[noexec] = "1" | ||
| 23 | |||
| 24 | S = "${WORKDIR}" | ||
| 25 | |||
| 26 | do_compile() { | ||
| 27 | ${CC} ${CPPFLAGS} ${CFLAGS} -fPIE -c ssp-local.c -o ssp-local.o | ||
| 28 | ${AR} r libssp_nonshared.a ssp-local.o | ||
| 29 | } | ||
| 30 | do_install() { | ||
| 31 | install -Dm 0644 ${B}/libssp_nonshared.a ${D}${base_libdir}/libssp_nonshared.a | ||
| 32 | } | ||
| 33 | # | ||
| 34 | # We will skip parsing for non-musl systems | ||
| 35 | # | ||
| 36 | COMPATIBLE_HOST = ".*-musl.*" | ||
| 37 | RDEPENDS_${PN}-staticdev = "" | ||
| 38 | RDEPENDS_${PN}-dev = "" | ||
| 39 | RRECOMMENDS_${PN}-dbg = "${PN}-staticdev (= ${EXTENDPKGV})" | ||
diff --git a/meta/recipes-core/musl/libssp-nonshared/ssp-local.c b/meta/recipes-core/musl/libssp-nonshared/ssp-local.c new file mode 100644 index 0000000000..8f51afa2c1 --- /dev/null +++ b/meta/recipes-core/musl/libssp-nonshared/ssp-local.c | |||
| @@ -0,0 +1,45 @@ | |||
| 1 | /* Stack protector support. | ||
| 2 | Copyright (C) 2005-2018 Free Software Foundation, Inc. | ||
| 3 | |||
| 4 | This file is part of GCC. | ||
| 5 | |||
| 6 | GCC is free software; you can redistribute it and/or modify it under | ||
| 7 | the terms of the GNU General Public License as published by the Free | ||
| 8 | Software Foundation; either version 3, or (at your option) any later | ||
| 9 | version. | ||
| 10 | |||
| 11 | In addition to the permissions in the GNU General Public License, the | ||
| 12 | Free Software Foundation gives you unlimited permission to link the | ||
| 13 | compiled version of this file into combinations with other programs, | ||
| 14 | and to distribute those combinations without any restriction coming | ||
| 15 | from the use of this file. (The General Public License restrictions | ||
| 16 | do apply in other respects; for example, they cover modification of | ||
| 17 | the file, and distribution when not linked into a combine | ||
| 18 | executable.) | ||
| 19 | |||
| 20 | GCC is distributed in the hope that it will be useful, but WITHOUT ANY | ||
| 21 | WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
| 22 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
| 23 | for more details. | ||
| 24 | |||
| 25 | Under Section 7 of GPL version 3, you are granted additional | ||
| 26 | permissions described in the GCC Runtime Library Exception, version | ||
| 27 | 3.1, as published by the Free Software Foundation. | ||
| 28 | |||
| 29 | You should have received a copy of the GNU General Public License and | ||
| 30 | a copy of the GCC Runtime Library Exception along with this program; | ||
| 31 | see the files COPYING3 and COPYING.RUNTIME respectively. If not, see | ||
| 32 | <http://www.gnu.org/licenses/>. */ | ||
| 33 | |||
| 34 | extern void __stack_chk_fail (void); | ||
| 35 | |||
| 36 | /* Some targets can avoid loading a GP for calls to hidden functions. | ||
| 37 | Using this entry point may avoid the load of a GP entirely for the | ||
| 38 | function, making the overall code smaller. */ | ||
| 39 | |||
| 40 | void | ||
| 41 | __attribute__((visibility ("hidden"))) | ||
| 42 | __stack_chk_fail_local (void) | ||
| 43 | { | ||
| 44 | __stack_chk_fail (); | ||
| 45 | } | ||
