diff options
author | Armin Kuster <akuster808@gmail.com> | 2024-07-28 20:59:04 -0400 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2024-07-29 20:07:01 -0400 |
commit | 2e21e548127bbeebfafca38965cf5224e0b27c2a (patch) | |
tree | fa095ddd7dc8dea3ce08a7049f13ab4afd119fe9 | |
parent | c0e3fecc3bea450a53a49382d4baedf6be169fbb (diff) | |
download | meta-security-2e21e548127bbeebfafca38965cf5224e0b27c2a.tar.gz |
isic: Fix config error
configure: error: installation or configuration problem: C compiler cannot create executables.
| NOTE: The following config.log files may provide further information.
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | recipes-security/isic/isic_0.07.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/recipes-security/isic/isic_0.07.bb b/recipes-security/isic/isic_0.07.bb index 3e56091..d39184e 100644 --- a/recipes-security/isic/isic_0.07.bb +++ b/recipes-security/isic/isic_0.07.bb | |||
@@ -23,6 +23,10 @@ inherit autotools-brokensep | |||
23 | 23 | ||
24 | EXTRA_OECONF += "--with-libnet-dir=${STAGING_DIR_HOST}${libdir} " | 24 | EXTRA_OECONF += "--with-libnet-dir=${STAGING_DIR_HOST}${libdir} " |
25 | 25 | ||
26 | # many configure tests are failing with gcc-14 | ||
27 | CFLAGS += "-Wno-error=implicit-int -Wno-error=implicit-function-declaration" | ||
28 | BUILD_CFLAGS += "-Wno-error=implicit-int -Wno-error=implicit-function-declaration" | ||
29 | |||
26 | do_configure () { | 30 | do_configure () { |
27 | oe_runconf | 31 | oe_runconf |
28 | } | 32 | } |