The icx and icpx Intel compilers are selected by WM_COMPILER=Icx These compilers are based on the Clang front-end and hence the configuration files are based on and nearly identical to those for Clang. Support for the new OneAPI compilers replaces the now deprecated Intel icc, icpc compilers.
19 lines
410 B
Plaintext
19 lines
410 B
Plaintext
SUFFIXES += .c
|
|
|
|
cWARN = -Wall
|
|
|
|
cc = gcc -m32
|
|
|
|
include $(DEFAULT_RULES)/c$(WM_COMPILE_OPTION)
|
|
|
|
cFLAGS = $(GFLAGS) $(cWARN) $(cOPT) $(cDBUG) $(LIB_HEADER_DIRS) -fPIC
|
|
|
|
ctoo = $(WM_SCHEDULER) $(cc) $(cFLAGS) -c $< -o $@
|
|
|
|
LINK_LIBS = $(cDBUG)
|
|
|
|
LINKLIBSO = $(cc) -fuse-ld=bfd -shared
|
|
|
|
LINKEXE = $(cc) -fuse-ld=bfd \
|
|
-Xlinker --add-needed -Xlinker -z -Xlinker nodefs
|