freebsd-ports/lang/icc7/pkg-plist

1359 lines
78 KiB
Text
Raw Normal View History

Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/C++ReleaseNotes.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_lan.pdf
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/anal_cmb.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/anal_exc.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/anal_imp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/anal_mut.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/anal_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/app_dev.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/asm_64.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/asm_algn.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/asm_alia.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/asm_arth.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/asm_asgn.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/asm_bund.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/asm_data.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/asm_dir.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/asm_grp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/asm_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/asm_set.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/asm_ug.log
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/asm_ug_lx.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/asm_ug_lx_csh.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/asm_ug_lx_rhc.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/bookcls.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/bookopn.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/bsscdhtm.js
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/clo_abi.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/clo_adv.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/clo_comp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/clo_err.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/clo_file.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/clo_info.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/clo_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/comp_inst.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/comp_jmp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/comp_ln.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/comp_lne.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/comp_str.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/comp_sym.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/compl_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/cover.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/cshdat_robohelp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/cshdat_webhelp.htm
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/dep_exmp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/dep_fals.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/dep_mods.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/dep_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/dep_sync.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/diag_err.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/diag_fatl.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/diag_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/diag_synt.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/diag_type.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/diag_wrn.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/disclaimer.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/ehelp.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/ehlpdhtm.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/fea_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/fea_retn.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/fea_spec.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/glossary.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/gs_env.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/gs_inv.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/gs_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/int_abt.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/int_conv.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/int_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/int_pubs.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/int_sys.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/linux.css
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/linux_ns.css
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/lnxskin_nologo.skn
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/logo.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/msg_synt.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/note.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/picarrow.bmp
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/pichand.bmp
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/picmouse.bmp
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/pred_brn.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/pred_clr.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/pred_cmp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/pred_imp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/pred_ind.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/pred_mut.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/pred_mxr.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/pred_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/pred_sco.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/pred_sfe.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/pred_st8.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/vir_areg.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/vir_bank.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/vir_brch.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/vir_decl.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/vir_reg.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/vir_undf.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/vir_unwn.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/vir_valu.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/webhelp.cab
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/webhelp.jar
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whcsh_home.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whcshdata.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whdata/whftdata.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whdata/whftdata0.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whdata/whfts.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whdata/whfts.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whdata/whfwdata.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whdata/whgdata.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whdata/whglo.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whdata/whglo.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whdata/whidata.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whdata/whidata0.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whdata/whidx.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whdata/whidx.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whdata/whtdata.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whdata/whtdata0.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whdata/whtoc.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whdata/whtoc.js
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/docs/asm_ug/whdata
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whestart.ico
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whfbody.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whfdhtml.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whfform.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whfhost.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whform.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whframes.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgbody.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whexpbar.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whlstg0.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whlsti0.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whlstt0.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whlstt1.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whlstt10.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whlstt11.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whlstt12.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whlstt13.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whlstt2.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whlstt3.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whlstt4.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whlstt5.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whlstt6.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whlstt7.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whlstt8.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whlstt9.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whnvf30.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whnvf31.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whnvf32.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whnvf33.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whnvl31.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whnvl32.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whnvl33.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whnvp30.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whnvp31.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whnvp32.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whnvp33.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whnvt30.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whnvt31.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whnvt32.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdata/whnvt33.htm
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/docs/asm_ug/whgdata
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdef.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whgdhtml.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whghost.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whhost.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whibody.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whidhtml.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whiform.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whihost.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whlang.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whmozemu.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whmsg.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whnjs.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whphost.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whproj.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whproj.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whproj.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whproxy.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whres.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whrstart.ico
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whskin_banner.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whskin_blank.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whskin_frmset01.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whskin_frmset010.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whskin_homepage.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whskin_info.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whskin_mbars.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whskin_papplet.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whskin_pdhtml.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whskin_pickup.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whskin_plist.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whskin_tbars.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whst_topics.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whstart.ico
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whstart.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whstub.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_abge.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_abgi.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_abgw.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_abte.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_abti.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_abtw.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_fts_h.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_fts_n.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_glo_h.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_glo_n.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_go.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_hide.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_idx_h.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_idx_n.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_logo1.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_logo2.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_next.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_next_g.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_nologo.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_prev.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_prev_g.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_spac.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_sync.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_tab0.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_tab1.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_tab2.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_tab3.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_tab4.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_tab5.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_tab6.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_tab7.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_tab8.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_toc3.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_toc4.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_toc_h.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_toc_n.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_ws.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/wht_ws_g.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whtbar.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whtdhtml.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whthost.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whtopic.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whutils.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whver.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whxdata/whftdata0.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whxdata/whfts.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whxdata/whglo.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whxdata/whidata0.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whxdata/whidx.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whxdata/whtdata0.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug/whxdata/whtoc.xml
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/docs/asm_ug/whxdata
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/docs/asm_ug
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/asm_ug.pdf
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/bookcls.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/bookopn.gif
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/caution.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/ch01-4.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/ch02-2.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/ch03-2.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/ch03-3.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/ch03-4.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/ch03-8.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/ch04-3.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/ch04-4.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/ch13-22.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/ch13-24.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/cover.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/cshdat_robohelp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/cshdat_webhelp.htm
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/ehlpdhtm.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/index.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/index_csh.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/index_rhc.htm
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/ivec.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux.css
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux.log
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux000.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux101.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux102.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux103.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux104.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux105.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux106.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux107.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux108.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux109.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux110.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux111.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux112.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux113.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux114.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux115.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux116.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux117.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux118.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux119.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux11a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux120.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux120a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux121.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux122.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux123.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux124.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux125.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux126.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux127.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux128.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux129.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux12a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux130.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux131.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux132.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux133.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux134.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux135.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux136.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux137.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux138.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux139.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux13a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux140.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux141.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux142.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux143.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux144.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux145.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux146.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux147.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux148.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux149.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux150.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux151.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux152.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux154.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux155.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux156.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux157.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux158.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux159.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux160.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux161.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux162.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux163.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux164.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux165.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux166.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux167.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux168.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux169.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux16a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux170.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux171.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux172.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux174.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux175.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux177.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux178.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux17a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux180.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux181.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux182.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux183.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux184.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux185.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux186.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux187.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux188.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux189.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux190.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux191.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux192.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux193.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux194.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux195.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux195b.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux196.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux197.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux198.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux199.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux200.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux201.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux202.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux203.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux204.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux205.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux206.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux208.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux209.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux209a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux210.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux211.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux212.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux213.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux220.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux25a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux26a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux27a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux28a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux29a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux29b.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux2a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux300.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux301.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux302.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux304.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux305.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux306.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux307.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux308.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux309.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux310.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux311.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux312.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux313.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux314.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux315.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux316.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux317.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux318.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux319.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux31a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux320.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux321.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux322.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux323.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux324.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux325.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux326.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux327.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux328.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux329.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux330.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux331.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux332.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux333.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux334.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux335.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux336.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux337.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux338.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux339.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux340.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux341.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux342.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux343.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux344.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux345.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux346.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux347.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux348.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux349.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux350.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux351.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux352.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux353.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux354.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux355.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux356.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux35a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux36a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux37a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux3a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux40a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux41a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux42a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux42b.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux44a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux46a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux49a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux50a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux54a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux56a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux57a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux59a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux59b.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux5a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux600.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux601.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux602.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux603.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux604.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux605.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux606.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux607.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux608.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux609.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux60a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux610.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux611.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux612.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux613.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux614.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux615.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux616.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux617.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux618.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux619.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux62a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux620.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux64a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux65a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux69a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux6a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux700.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux701.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux702.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux703.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux704.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux705.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux706.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux707.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux708.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux709.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux70a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux710.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux711.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux712.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux713.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux714.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux715.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux716.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux717.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux718.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux719.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux720.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux72a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux73a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux75a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux76a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux7a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux81a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux82a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux86a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux89a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux92.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux93.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux94.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux97.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux98.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux99.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux9a.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/linux_ns.css
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/lm_comc.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/lm_expo.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/lm_hypr.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/lm_list.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/lm_near.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/lm_othr.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/lm_ovr.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/lm_remd.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/lm_spec.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/lm_trig.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/lm_use.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/lnxskin_nologo.skn
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/mix1.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/mix10.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/mix2.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/mix3.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/mix4.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/mix5.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/mix6.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/mix7.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/mix8.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/mix9.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/note.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/om08832.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/om08833.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/om088345.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/om09714c.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/picarrow.bmp
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/pichand.bmp
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/picmouse.bmp
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/simd_flow.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/webhelp.cab
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/webhelp.jar
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whcsh_home.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whcshdata.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whdata/whftdata.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whdata/whftdata0.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whdata/whfts.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whdata/whfts.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whdata/whfwdata.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whdata/whgdata.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whdata/whglo.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whdata/whglo.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whdata/whidata.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whdata/whidata0.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whdata/whidx.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whdata/whidx.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whdata/whtdata.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whdata/whtdata0.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whdata/whtoc.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whdata/whtoc.js
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/docs/c_ug/whdata
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whestart.ico
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whfbody.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whfdhtml.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whfform.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whfhost.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whform.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whframes.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgbody.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whexpbar.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstg0.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlsti0.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt0.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt1.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt10.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt11.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt12.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt13.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt14.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt15.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt16.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt17.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt18.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt19.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt2.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt20.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt21.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt22.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt23.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt24.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt25.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt26.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt27.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt28.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt29.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt3.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt30.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt31.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt32.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt33.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt34.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt35.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt36.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt37.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt38.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt39.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt4.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt40.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt41.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt42.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt43.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt44.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt45.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt46.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt47.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt48.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt49.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt5.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt50.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt51.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt52.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt53.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt54.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt55.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt56.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt57.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt58.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt59.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt6.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt60.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt61.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt62.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt63.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt64.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt7.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt8.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whlstt9.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whnvf30.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whnvf31.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whnvf32.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whnvf33.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whnvl31.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whnvl32.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whnvl33.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whnvp30.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whnvp31.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whnvp32.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whnvp33.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whnvt30.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whnvt31.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whnvt32.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdata/whnvt33.htm
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/docs/c_ug/whgdata
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdef.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whgdhtml.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whghost.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whhost.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whibody.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whidhtml.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whiform.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whihost.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whlang.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whmozemu.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whmsg.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whnjs.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whphost.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whproj.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whproj.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whproj.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whproxy.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whres.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whrstart.ico
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whskin_banner.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whskin_blank.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whskin_frmset01.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whskin_frmset010.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whskin_homepage.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whskin_info.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whskin_mbars.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whskin_papplet.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whskin_pdhtml.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whskin_pickup.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whskin_plist.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whskin_tbars.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whst_topics.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whstart.ico
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whstart.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whstub.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_abge.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_abgi.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_abgw.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_abte.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_abti.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_abtw.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_fts_h.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_fts_n.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_glo_h.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_glo_n.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_go.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_hide.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_idx_h.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_idx_n.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_logo1.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_logo2.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_next.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_next_g.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_nologo.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_prev.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_prev_g.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_spac.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_sync.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_tab0.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_tab1.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_tab2.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_tab3.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_tab4.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_tab5.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_tab6.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_tab7.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_tab8.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_toc3.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_toc4.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_toc_h.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_toc_n.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_ws.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/wht_ws_g.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whtbar.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whtdhtml.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whthost.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whtopic.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whutils.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whver.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whxdata/whftdata0.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whxdata/whfts.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whxdata/whglo.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whxdata/whidata0.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whxdata/whidx.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whxdata/whtdata0.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug/whxdata/whtoc.xml
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/docs/c_ug/whxdata
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/docs/c_ug
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/c_ug_lnx.pdf
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ccompindex.htm
intel/%%COMPILERDIR%%/docs/clicense
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/credist.txt
intel/%%COMPILERDIR%%/docs/csupport
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/flex_ug.pdf
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/icid.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/icpi.htm
2003-06-12 12:52:08 +02:00
@comment %%PORTDOCS%%intel/%%COMPILERDIR%%/docs/notes/icc_fixes.txt
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/notes/icc_issues.txt
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/docs/notes
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/ann_entr.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/ann_mem.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/ann_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/ann_pred.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/ann_vec.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/asm_lan.log
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/asm_lan_lx.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/asm_lan_lx_csh.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/asm_lan_lx_rhc.htm
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/axa_app.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/axa_brch.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/axa_cntr.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/axa_fp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/axa_greg.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/axa_indr.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/axa_othr.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/axa_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/axa_pred.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/axb_miss.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/axb_opcd.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/axb_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/axc_reloc.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/axd_dir.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/bookcls.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/bookopn.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/bsscdhtm.js
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/bund_exp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/bund_imp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/bundle.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/bundles.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/cnst_c.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/cnst_chr.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/cnst_msm.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/cnst_num.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/cnst_str.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/cover.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/cshdat_robohelp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/cshdat_webhelp.htm
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/data_alg.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/data_crs.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/data_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/data_spc.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/data_stm.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/decl_als.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/decl_com.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/decl_fil.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/decl_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/decl_stp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/decl_sze.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/decl_vis.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/disclaimer.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/ehelp.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/ehlpdhtm.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/elem_cnt.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/elem_exp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/elem_ids.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/elem_mnm.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/elem_nme.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/elem_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/elem_rnm.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/elem_smb.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/elem_snm.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/elem_typ.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/elem_val.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/gloss.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/linux.css
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/linux_ns.css
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/lnxskin_nologo.skn
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/logo.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/misc_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/misc_pre.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/misc_rad.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/misc_reg.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/misc_rot.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/misc_rrg.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/misc_stk.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/misc_str.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/misc_urt.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/msc_bte.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/note.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/ovw_abt.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/ovw_not.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/ovw_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/ovw_pubs.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/picarrow.bmp
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/pichand.bmp
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/picmouse.bmp
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/proc_dir.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/proc_lbl.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/proc_win.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/proceds.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/prog_dep.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/prog_inc.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/prog_ins.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/sec_abs.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/sec_dir.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/sec_flag.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/sec_link.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/sec_prdf.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/sec_ret.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/sec_stck.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/sec_use.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/sec_win.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/smb_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/sect_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/smb_glob.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/smb_locl.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/smb_weak.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/sta_asgn.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/sta_crss.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/sta_data.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/sta_dir.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/sta_eq.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/sta_inst.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/sta_labl.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/sta_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/stck_exp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/stck_lst.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/stck_opr.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/stck_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/stck_prc.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/stck_svx.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/stck_use.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/strt_ovw.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/webhelp.cab
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/webhelp.jar
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whcsh_home.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whcshdata.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whdata/whftdata.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whdata/whftdata0.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whdata/whfts.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whdata/whfts.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whdata/whfwdata.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whdata/whgdata.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whdata/whglo.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whdata/whglo.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whdata/whidata.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whdata/whidata0.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whdata/whidata1.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whdata/whidx.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whdata/whidx.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whdata/whtdata.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whdata/whtdata0.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whdata/whtoc.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whdata/whtoc.js
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/docs/ref/whdata
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whestart.ico
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whfbody.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whfdhtml.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whfform.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whfhost.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whform.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whframes.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgbody.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whexpbar.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstg0.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlsti0.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlsti1.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlsti10.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlsti2.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlsti3.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlsti4.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlsti5.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlsti6.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlsti7.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlsti8.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlsti9.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstt14.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstt15.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstt16.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstt17.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstt18.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstt0.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstt1.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstt10.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstt11.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstt12.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstt13.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstt2.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstt3.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstt4.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstt5.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstt6.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstt7.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstt8.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whlstt9.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whnvf30.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whnvf31.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whnvf32.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whnvf33.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whnvl31.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whnvl32.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whnvl33.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whnvp30.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whnvp31.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whnvp32.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whnvp33.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whnvt30.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whnvt31.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whnvt32.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdata/whnvt33.htm
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/docs/ref/whgdata
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdef.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whgdhtml.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whghost.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whhost.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whibody.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whidhtml.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whiform.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whihost.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whlang.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whmozemu.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whmsg.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whnjs.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whphost.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whproj.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whproj.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whproj.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whproxy.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whres.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whrstart.ico
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whskin_banner.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whskin_blank.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whskin_frmset01.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whskin_frmset010.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whskin_homepage.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whskin_info.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whskin_mbars.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whskin_papplet.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whskin_pdhtml.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whskin_pickup.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whskin_plist.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whskin_tbars.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whst_topics.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whstart.ico
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whstart.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whstub.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_abge.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_abgi.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_abgw.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_abte.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_abti.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_abtw.jpg
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_fts_h.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_fts_n.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_glo_h.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_glo_n.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_go.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_hide.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_idx_h.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_idx_n.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_logo1.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_logo2.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_next.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_next_g.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_nologo.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_prev.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_prev_g.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_spac.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_sync.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_tab0.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_tab1.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_tab2.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_tab3.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_tab4.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_tab5.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_tab6.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_tab7.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_tab8.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_toc3.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_toc4.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_toc_h.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_toc_n.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_ws.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/wht_ws_g.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whtbar.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whtdhtml.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whthost.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whtopic.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whutils.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whver.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whxdata/whftdata0.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whxdata/whfts.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whxdata/whglo.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whxdata/whidata0.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whxdata/whidata1.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whxdata/whidx.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whxdata/whtdata0.xml
%%PORTDOCS%%intel/%%COMPILERDIR%%/docs/ref/whxdata/whtoc.xml
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/docs/ref/whxdata
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/docs/ref
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/docs
intel/%%COMPILERDIR%%/ia32/bin/Errormatch.txt
intel/%%COMPILERDIR%%/ia32/bin/icc
intel/%%COMPILERDIR%%/ia32/bin/icc.cfg
intel/%%COMPILERDIR%%/ia32/bin/iccbin
intel/%%COMPILERDIR%%/ia32/bin/iccbin.cfg
intel/%%COMPILERDIR%%/ia32/bin/iccfilt
intel/%%COMPILERDIR%%/ia32/bin/iccvars.csh
intel/%%COMPILERDIR%%/ia32/bin/iccvars.sh
intel/%%COMPILERDIR%%/ia32/bin/icid
intel/%%COMPILERDIR%%/ia32/bin/icpc
intel/%%COMPILERDIR%%/ia32/bin/icpc.cfg
intel/%%COMPILERDIR%%/ia32/bin/icpcbin
intel/%%COMPILERDIR%%/ia32/bin/icpcbin.cfg
intel/%%COMPILERDIR%%/ia32/bin/icpi
intel/%%COMPILERDIR%%/ia32/bin/ldwrapper/ld
@dirrm intel/%%COMPILERDIR%%/ia32/bin/ldwrapper
intel/%%COMPILERDIR%%/ia32/bin/mcpcom
intel/%%COMPILERDIR%%/ia32/bin/profmerge
intel/%%COMPILERDIR%%/ia32/bin/proforder
intel/%%COMPILERDIR%%/ia32/bin/xiar
intel/%%COMPILERDIR%%/ia32/bin/xild
@dirrm intel/%%COMPILERDIR%%/ia32/bin
intel/%%COMPILERDIR%%/ia32/include/cassert
intel/%%COMPILERDIR%%/ia32/include/cctype
intel/%%COMPILERDIR%%/ia32/include/cerrno
intel/%%COMPILERDIR%%/ia32/include/cfloat
intel/%%COMPILERDIR%%/ia32/include/ciso646
intel/%%COMPILERDIR%%/ia32/include/climits
intel/%%COMPILERDIR%%/ia32/include/clocale
intel/%%COMPILERDIR%%/ia32/include/cmath
intel/%%COMPILERDIR%%/ia32/include/csetjmp
intel/%%COMPILERDIR%%/ia32/include/csignal
intel/%%COMPILERDIR%%/ia32/include/cstdarg
intel/%%COMPILERDIR%%/ia32/include/cstddef
intel/%%COMPILERDIR%%/ia32/include/cstdio
intel/%%COMPILERDIR%%/ia32/include/cstdlib
intel/%%COMPILERDIR%%/ia32/include/cstring
intel/%%COMPILERDIR%%/ia32/include/ctime
intel/%%COMPILERDIR%%/ia32/include/cwchar
intel/%%COMPILERDIR%%/ia32/include/cwctype
intel/%%COMPILERDIR%%/ia32/include/dvec.h
intel/%%COMPILERDIR%%/ia32/include/emm_func.h
intel/%%COMPILERDIR%%/ia32/include/emmintrin.h
intel/%%COMPILERDIR%%/ia32/include/exception
intel/%%COMPILERDIR%%/ia32/include/fvec.h
intel/%%COMPILERDIR%%/ia32/include/ivec.h
intel/%%COMPILERDIR%%/ia32/include/mathimf.h
intel/%%COMPILERDIR%%/ia32/include/mmintrin.h
intel/%%COMPILERDIR%%/ia32/include/new
intel/%%COMPILERDIR%%/ia32/include/new.h
intel/%%COMPILERDIR%%/ia32/include/pgouser.h
2003-07-11 17:48:05 +02:00
intel/%%COMPILERDIR%%/ia32/include/pmmintrin.h
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
intel/%%COMPILERDIR%%/ia32/include/proto.h
intel/%%COMPILERDIR%%/ia32/include/sse2mmx.h
intel/%%COMPILERDIR%%/ia32/include/stdarg.h
intel/%%COMPILERDIR%%/ia32/include/sys/cdefs.h
@dirrm intel/%%COMPILERDIR%%/ia32/include/sys
intel/%%COMPILERDIR%%/ia32/include/typeinfo
intel/%%COMPILERDIR%%/ia32/include/xmmintrin.h
intel/%%COMPILERDIR%%/ia32/include/xmtx.h
intel/%%COMPILERDIR%%/ia32/include/xstddef
intel/%%COMPILERDIR%%/ia32/include/yvals.h
@dirrm intel/%%COMPILERDIR%%/ia32/include
intel/%%COMPILERDIR%%/ia32/lib/crtxi.o
intel/%%COMPILERDIR%%/ia32/lib/crtxn.o
intel/%%COMPILERDIR%%/ia32/lib/icrt.internal.map
intel/%%COMPILERDIR%%/ia32/lib/icrt.link
intel/%%COMPILERDIR%%/ia32/lib/libcxa.a
intel/%%COMPILERDIR%%/ia32/lib/libcxa.so
intel/%%COMPILERDIR%%/ia32/lib/libcxa.so.3
intel/%%COMPILERDIR%%/ia32/lib/libimf.a
intel/%%COMPILERDIR%%/ia32/lib/libirc.a
intel/%%COMPILERDIR%%/ia32/lib/libircmt.a
intel/%%COMPILERDIR%%/ia32/lib/libsvml.a
intel/%%COMPILERDIR%%/ia32/lib/libunwind.a
@dirrm intel/%%COMPILERDIR%%/ia32/lib
@dirrm intel/%%COMPILERDIR%%/ia32
@dirrm intel/%%COMPILERDIR%%/man/man1
@dirrm intel/%%COMPILERDIR%%/man
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch0/conventi.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch0/descript.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch0/obj.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch0/overview.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch0/prereq.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch0/req.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch0/why.htm
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/optimize/ch0
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch1/fortran.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch1/invabout.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch1/invoking.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch1/overview.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch1/quiz.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch1/vc6/makefile.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch1/vc6/options.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch1/vc6/select.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch1/vc6/vcpp6.htm
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/optimize/ch1/vc6
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch1/vsnet/env_vari.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch1/vsnet/options.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch1/vsnet/select.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch1/vsnet/vcppnet.htm
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/optimize/ch1/vsnet
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/optimize/ch1
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch2/optimiz.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch2/quiz.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch2/settings.htm
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/optimize/ch2
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch3/combinin.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch3/combtabl.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch3/dispauto.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch3/dispmanu.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch3/example.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch3/examplm.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch3/examplm2.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch3/exclusiv.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch3/itanium.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch3/newswitch.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch3/overview.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch3/quiz.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch3/scheduli.htm
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/optimize/ch3
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch4/autopara.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch4/hloabout.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch4/hloiarch.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch4/hloiexmp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch4/hlousage.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch4/openmp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch4/overview.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch4/quiz.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch4/vectorize.htm
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/optimize/ch4
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch5/example1.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch5/example2.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch5/indbranc.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch5/ipo1.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch5/ipo2.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch5/ipo3.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch5/ipo5.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch5/overview.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch5/pgo1.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch5/pgo1exmp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch5/pgo2.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch5/pgo3.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch5/pgo4.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch5/pgo5.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch5/predicat.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch5/predicat2.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch5/quiz.htm
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/optimize/ch5
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch6/fpp.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch6/math.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch6/other.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/ch6/quiz.htm
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/optimize/ch6
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/feedback/feedback.htm
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/optimize/feedback
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/final/related.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/final/review.htm
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/optimize/final
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/1_tool_menu.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/2_compslct.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/3_project_menu.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/4_project_settings.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/5_project_settings.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/Qip.swf
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/Qipo.swf
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/ch1quiz.swf
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/cmd_slct.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/ia32.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/ipoenabl.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/itanium.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/memcpyu.swf
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/optimize_project.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/options-page.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/pentium4.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/pgo_opt_code.swf
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/pgoadvan.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/pgocycle.swf
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/pgowload.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/prop_menu_file.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/prop_pages.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/prop_pages_file.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/properties_menu.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/splash.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/tool-options.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/tools_menu-directories.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/wbttitl.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/images/wbttitln.gif
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/optimize/images
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/index.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/legal/disclaim.htm
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/optimize/legal
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/revision.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/optimize/up_left.htm
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/optimize
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/scripts/behActions.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/scripts/behCourseBuilder.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/scripts/behDragLayer.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/scripts/behTimeline.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/scripts/cmi.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/scripts/elemDragClass.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/scripts/elemHotaClass.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/scripts/elemIbtnClass.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/scripts/elemInptClass.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/scripts/elemSldrClass.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/scripts/elemTextClass.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/scripts/elemTimrClass.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/scripts/interactionClass.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/scripts/version.txt
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/scripts
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/blank.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/glossary.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/hitoc.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/keypress.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/left.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/loadFile.class
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/loadFile.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/low_left.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/lowright.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/lowright_no_status.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/nav/startnav.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/nav/starttoc.htm
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/templ/nav
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/popup.js
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/right.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/styles.css
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/styles_linux.css
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/tocright.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/top.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/up_right.htm
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ/win_eg.js
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/templ
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/bgrndtoc.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/bgrndtoclong.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/bgrndtop.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/buttons/but_cont.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/buttons/but_egD.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/buttons/but_egU.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/buttons/but_res.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/buttons/butbackD.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/buttons/butbackU.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/buttons/butstrtU.gif
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/templ_im/buttons
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/fla_test.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/fla_test.swf
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/gloss.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/hide_toc.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/0.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/1.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/2.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/_1.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/_2.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/buttonm.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/buttonp.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/cur_page.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/hibullet.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/internet.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/next.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/nonext.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/noprev.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/prev.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/s1.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/s2.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/sho_stat.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/shoblank.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/shor_but.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/shortcut.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/icons/spacer.gif
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/templ_im/icons
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/loader.gif
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/logo.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/lowleft.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/lowright.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/navbot.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/navbotleft.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/oranline.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/orbcktop.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/shortcut.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/show_toc.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/spacer.gif
%%PORTDOCS%%intel/%%COMPILERDIR%%/training/templ_im/use_nav.gif
Update icc to 7.0.078. Note: Object files built with version 6.0 of Intel(R) Compilers may not link properly with objects built with version 7.0 of Intel(R) Compilers. Rebuilding of the object files is suggested. Changes between the submitted version and the committed version: - update to 078 instead of 075 - treat excessive parameters in function calls as an error instead of a warning (removed compatibility with a not named MS product, as suggested by Intel) - allow to override the INTEL_FLEXLM_LICENSE variable From the submitter: - Unbreak usage of signal.h on -current and RELENG_5_0. (committers note: see below) - Fix ownership of installed files when built as non-root. - Fix the patched versions of the icc- and the icpc-script to work with options containing spaces (e.g. '-DFOOBAR="foo bar"'). - Install 'clicense' and 'csupport' in the docs-dir even if NOPORTDOCS is defined, the later is not optional but required by 'icid'. - Move the ld-wrapper to a sub-dir and thus out of what is normally set in PATH to prevent footshooting (this isn't perfect but simple until someone reworks this port to provide FreeBSD-compatibility in another way... or Intel releases a native version). - Patch the headers to better fit for FreeBSD (hopefully...). Notes: - Icc7 is more picky about unknow options than the previous versions, i.e. the gcc-options normally supplied in CFLAGS unless altered in /etc/make.conf. Therefore compilation of ports with icc likely fail if the standard CFLAGS are not unset (e.g. `make CC=icc CFLAGS=""`) or replaced by options valid for icc. - When compiling multi-threaded C-code make sure to link with icc and option '-mt' (for ports e.g. via PTHREAD_CFLAGS) otherwise libc_r won't be linked in correctly. Submitted by: marius@alchemy.franken.de Additional information: - rev 1.20 of src/sys/i386/include/signal.h introduced __aligned which isn't handled in sys/cdefs.h for non GCC compilers (at least not in publically available sources) - the FreeBSD stdarg.h is missing a macro for va_copy() in the non GCC case, we handle it in the port, but be prepared to get problems when the base system gets fixed - we don't use the icc-buildin of alignof() - Intel provides a float.h which has different floatingpoint values (e.g. MAX_FLOAT) than we have in the base system, in the port we use the FreeBSD header (Warner knows about the issue... at least he got a mail from me and Marius) - we replace __wchar_t with __ct_rune_t because icc has a build-in type for it, this affects "typedef __ct_rune_t __wchar_t;" in sys/_types.h. It isn't known if this may be evil... - icc doesn't need the option "-mt" anymore to generate thread safe code, but our FreeBSD version still needs it to be able to choose libc_r instead of libc If a src-committer wants to address any of the above mentioned issues he should first contact me, I may have already some fixes in my local tree.
2003-01-11 18:21:41 +01:00
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training/templ_im
%%PORTDOCS%%@dirrm intel/%%COMPILERDIR%%/training
@dirrm intel/%%COMPILERDIR%%
@dirrm intel/licenses
@dirrm intel