Afaik, gcc में, आप फ्लैगशिप सेट कर सकते हैं -m32
ताकि यह linux सोर्स को 32bit एक्जीक्यूटिव पर संकलित करने दे। मुझे मेकफाइल्स के बारे में विस्तृत ज्ञान नहीं है, लेकिन आप उन्हें ट्विक कर सकते हैं।
संपादित करें:
मैं यहां स्टैकओवरफ्लो से एक प्रश्न जोड़ना चाहता था , जिसमें यह cflags सेट करने के लिए कहा गया है:
export CFLAGS=-m32
और Torvalds 'github खाते में लिनक्स रिपॉजिटरी से , मैंने मुख्य मेकफाइल पर निम्नलिखित अनुभाग पाया जो आपको उपयोगी लग सकता है, क्योंकि यह बताता है कि आप पर्यावरण चर सेट करके लक्ष्य आर्किटेक्चर सेट कर सकते हैं। टिप्पणियों को पढ़ें, वर्तमान में, ये लाइनें इस फ़ाइल से हैं , लाइनों के बीच 174-196 :
# Cross compiling and selecting different set of gcc/bin-utils
# ---------------------------------------------------------------------------
#
# When performing cross compilation for other architectures ARCH shall be set
# to the target architecture. (See arch/* for the possibilities).
# ARCH can be set during invocation of make:
# make ARCH=ia64
# Another way is to have ARCH set in the environment.
# The default ARCH is the host where make is executed.
# CROSS_COMPILE specify the prefix used for all executables used
# during compilation. Only gcc and related bin-utils executables
# are prefixed with $(CROSS_COMPILE).
# CROSS_COMPILE can be set on the command line
# make CROSS_COMPILE=ia64-linux-
# Alternatively CROSS_COMPILE can be set in the environment.
# A third alternative is to store a setting in .config so that plain
# "make" in the configured kernel build directory always uses that.
# Default value for CROSS_COMPILE is not to prefix executables
# Note: Some architectures assign CROSS_COMPILE in their arch/*/Makefile
export KBUILD_BUILDHOST := $(SUBARCH)
ARCH ?= $(SUBARCH)
CROSS_COMPILE ?= $(CONFIG_CROSS_COMPILE:"%"=%)
# ...
# There are more architecture related stuff beyond this line