diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-09-17 12:24:34 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-09-17 12:24:34 +0200 |
commit | 95444b27abfb723db6c66c08dc6c12c7e1128e2e (patch) | |
tree | c9acdec9f7f8cb7e22caad371c77834c389655c0 /package/sysdig/Makefile | |
parent | 79d5a4a7dc9648e2d55407ca11daa9a4342abe72 (diff) |
remove -fhonour-copts usage
This reuires a external gcc patch, which I no longer add to newer gcc.
A lot of packages already need to disable the usage of -fhonour-copts, because
it doesn't work without patching. May be we need something like Buildroot
is using, a gcc wrapper to see poisened include or library paths while
cross-compiling.
Diffstat (limited to 'package/sysdig/Makefile')
-rw-r--r-- | package/sysdig/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/package/sysdig/Makefile b/package/sysdig/Makefile index a0d594aa9..031adccda 100644 --- a/package/sysdig/Makefile +++ b/package/sysdig/Makefile @@ -28,8 +28,7 @@ WRKBUILD= $(WRKDIR)/$(PKG_NAME)-obj CONFIG_STYLE:= cmake CMAKE_FLAGS:= -DUSE_BUNDLED_DEPS=OFF -DUSE_BUNDLED_B64=ON XAKE_FLAGS+= KERNELDIR="$(LINUX_DIR)" \ - ARCH=$(ADK_TARGET_ARCH) \ - GCC_HONOUR_COPTS=s + ARCH=$(ADK_TARGET_ARCH) sysdig-install: $(INSTALL_DIR) $(IDIR_SYSDIG)/usr/bin |