- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for ifneq (0.03 sec)
-
Makefile.core.mk
# linux binaries to the build dependencies, BUILD_DEPS, which can be added to other targets # that would need the Linux binaries (ex. tests). BUILD_DEPS:= ifeq ($(IN_BUILD_CONTAINER),1) ifneq ($(GOOS_LOCAL),"linux") BUILD_DEPS += build-linux endif endif export ARTIFACTS ?= $(TARGET_OUT) export JUNIT_OUT ?= $(ARTIFACTS)/junit.xml
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 03 23:53:59 UTC 2024 - 18.4K bytes - Viewed (0) -
Makefile.overrides.mk
BUILD_WITH_CONTAINER ?= 1 CONTAINER_OPTIONS = --mount type=bind,source=/tmp,destination=/tmp --net=host export COMMONFILES_POSTPROCESS = tools/commonfiles-postprocess.sh ifeq ($(BUILD_WITH_CONTAINER),1) # create phony targets for the top-level items in the repo PHONYS := $(shell ls | grep -v Makefile) .PHONY: $(PHONYS) $(PHONYS): @$(MAKE_DOCKER) $@ endif
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Mar 28 17:29:39 UTC 2023 - 1.4K bytes - Viewed (0) -
Makefile
# docker. If you'd rather build with a local tool chain instead, you'll need to # figure out all the tools you need in your environment to make that work. export BUILD_WITH_CONTAINER ?= 0 ifeq ($(BUILD_WITH_CONTAINER),1) # An export free of arguments in a Makefile places all variables in the Makefile into the # environment. This is needed to allow overrides from Makefile.overrides.mk. export
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 23 15:00:31 UTC 2024 - 2.3K bytes - Viewed (0) -
ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch
index a253698..2f4e2a9 100644 --- a/support/Makefile +++ b/support/Makefile @@ -167,13 +167,6 @@ CFLAGS-support_paths.c = \ -DINSTDIR_PATH=\"$(prefix)\" \ -DLIBDIR_PATH=\"$(libdir)\" -ifeq (,$(CXX)) -LINKS_DSO_PROGRAM = links-dso-program-c -else -LINKS_DSO_PROGRAM = links-dso-program -LDLIBS-links-dso-program = -lstdc++ -lgcc -lgcc_s $(libunwind) -endif - LDLIBS-test-container = $(libsupport)
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Sep 18 14:52:45 UTC 2023 - 8.9K bytes - Viewed (0) -
ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch
index 8ba5eae..b620d21 100644 --- a/sysdeps/unix/sysv/linux/if_index.c +++ b/sysdeps/unix/sysv/linux/if_index.c @@ -38,12 +38,19 @@ __if_nametoindex (const char *ifname) return 0; #else struct ifreq ifr; + if (strlen (ifname) >= IFNAMSIZ) + { + __set_errno (ENODEV); + return 0; + } + + strncpy (ifr.ifr_name, ifname, sizeof (ifr.ifr_name)); + int fd = __opensock ();
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Sep 18 14:52:45 UTC 2023 - 42.9K bytes - Viewed (0)