Changeset d75dc05 in mainline


Ignore:
Timestamp:
2017-10-09T18:17:05Z (7 years ago)
Author:
jzr <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
02667d9
Parents:
ca207e0
Message:

Remove the unmaintained and likely broken ICC support.

Files:
6 edited

Legend:

Unmodified
Added
Removed
  • HelenOS.config

    rca207e0 rd75dc05  
    298298@ "clang" Clang
    299299@ "gcc_helenos" GNU C Compiler (experimental HelenOS-specific cross-compiler)
    300 @ "icc" Intel C Compiler
    301300@ "gcc_native" GNU C Compiler (native)
    302 ! [PLATFORM=amd64|PLATFORM=ia32|PLATFORM=ia64] COMPILER (choice)
    303 
    304 % Compiler
    305 @ "gcc_cross" GNU C Compiler (cross-compiler)
    306 @ "clang" Clang
    307 @ "gcc_helenos" GNU C Compiler (experimental HelenOS-specific cross-compiler)
    308 @ "gcc_native" GNU C Compiler (native)
    309 ! [PLATFORM=mips32|PLATFORM=ppc32|PLATFORM=abs32le|PLATFORM=arm32|PLATFORM=sparc64|PLATFORM=riscv64] COMPILER (choice)
     301! COMPILER (choice)
    310302
    311303% Clang Integrated Assembler
  • boot/Makefile.build

    rca207e0 rd75dc05  
    5252        -pipe
    5353
    54 ICC_CFLAGS = -Wall -Wmissing-prototypes -Werror-implicit-function-declaration -wd170
    55 
    5654CLANG_CFLAGS = -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \
    5755        -Werror-implicit-function-declaration -Wwrite-strings \
     
    7876ifeq ($(COMPILER),gcc_helenos)
    7977        CFLAGS = $(COMMON_CFLAGS) $(GCC_CFLAGS) $(EXTRA_CFLAGS)
    80         DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
    81 endif
    82 
    83 
    84 ifeq ($(COMPILER),icc)
    85         CFLAGS = $(COMMON_CFLAGS) $(ICC_CFLAGS) $(EXTRA_CFLAGS)
    8678        DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
    8779endif
  • contrib/tools/random_check.sh

    rca207e0 rd75dc05  
    5252                echo "COMPILER=gcc_native" >>"$PRUNE_CONFIG_FILE"
    5353                echo "COMPILER=gcc_helenos" >>"$PRUNE_CONFIG_FILE"
    54                 echo "COMPILER=icc" >>"$PRUNE_CONFIG_FILE"
    5554                ;;
    5655        *|h)
  • kernel/Makefile

    rca207e0 rd75dc05  
    9292        -Wwrite-strings -pipe
    9393
    94 ICC_CFLAGS = -Wall -Wmissing-prototypes \
    95         -Werror-implicit-function-declaration -wd170
    96 
    9794CLANG_CFLAGS = -std=gnu99 -Wall -Wextra -Wno-unused-parameter \
    9895        -Wno-missing-field-initializers -Wno-unused-command-line-argument \
     
    171168        DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
    172169        INSTRUMENTATION = -finstrument-functions
    173 endif
    174 
    175 ifeq ($(COMPILER),icc)
    176         CFLAGS = $(COMMON_CFLAGS) $(ICC_CFLAGS)
    177         DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
    178         INSTRUMENTATION =
    179170endif
    180171
  • tools/autotool.py

    rca207e0 rd75dc05  
    893893                        common['CC_AUTOGEN'] = common['CC']
    894894               
    895                 if (config['COMPILER'] == "icc"):
    896                         check_app([common['CC'], "-V"], "Intel C++ Compiler", "support is experimental")
    897                         check_gcc(None, "", common, PACKAGE_GCC)
    898                         check_binutils(None, binutils_prefix, common, PACKAGE_BINUTILS)
    899                        
    900                         common['CC'] = "icc"
    901                         common['CC_AUTOGEN'] = common['CC']
    902                
    903895                if (config['COMPILER'] == "clang"):
    904896                        check_binutils(path, prefix, common, PACKAGE_CROSS)
  • uspace/Makefile.common

    rca207e0 rd75dc05  
    244244        -Wwrite-strings -pipe
    245245
    246 ICC_CFLAGS = -Wall -Wextra -Wno-clobbered -Wno-unused-parameter \
    247         -Wmissing-prototypes -Werror-implicit-function-declaration \
    248         -Wwrite-strings -pipe
    249 
    250246# -Wno-missing-prototypes is there because it warns about main().
    251247# This should be fixed elsewhere.
     
    261257ifeq ($(CONFIG_LINE_DEBUG),y)
    262258        GCC_CFLAGS += -ggdb
    263         ICC_CFLAGS += -g
    264259        CLANG_CFLAGS += -g
    265260endif
     
    293288ifeq ($(COMPILER),gcc_native)
    294289        CFLAGS += $(COMMON_CFLAGS) $(GCC_CFLAGS)
    295         DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
    296 endif
    297 
    298 ifeq ($(COMPILER),icc)
    299         CFLAGS += $(COMMON_CFLAGS) $(ICC_CFLAGS)
    300290        DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
    301291endif
Note: See TracChangeset for help on using the changeset viewer.