mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-14 09:11:27 +00:00
-fstack-protector-strong is controlled by the in-tree
CONFIG_STACKPROTECTOR_STRONG config option. If the flag is set without
the config option, scst fails to build:
ERROR: modpost: "__stack_chk_fail" [scst/src/scst.ko] undefined!
-fstack-clash-protection is disabled in the kernel's Makefile due to an
incompatibility with randomize_kstack_offset.
Fixes: 86d3d4bb1d ("kbuild: Enable additional compiler warnings")
Signed-off-by: Tony Battersby <tonyb@cybernetics.com>
23 lines
632 B
Makefile
23 lines
632 B
Makefile
ccflags-y := -I$(src)/../scst/include \
|
|
-Wall \
|
|
-Wextra \
|
|
-Wno-type-limits \
|
|
-Wno-missing-field-initializers \
|
|
-Wno-unused-parameter \
|
|
-Wformat \
|
|
-O2 \
|
|
-Werror=format-security \
|
|
-Werror=implicit-function-declaration \
|
|
-pipe \
|
|
-g \
|
|
-grecord-gcc-switches \
|
|
-Wstrict-prototypes
|
|
|
|
ifneq ($(CONFIG_SCSI_QLA2XXX_TARGET),)
|
|
ccflags-y += -DCONFIG_SCSI_QLA2XXX_TARGET=$(CONFIG_SCSI_QLA2XXX_TARGET)
|
|
endif
|
|
|
|
obj-m := qla2xxx_scst.o
|
|
qla2xxx_scst-objs := qla_os.o qla_init.o qla_mbx.o qla_iocb.o qla_isr.o qla_gs.o \
|
|
qla_dbg.o qla_sup.o qla_attr.o qla_mid.o qla_dfs.o qla_bsg.o qla_nx.o
|