LNK2001: unresolved external symbol __intel_new_feature_proc_init
I'm getting an "error LNK2001: unresolved external symbol __intel_new_feature_proc_init" with the accompanying LNK1120.I'm using VS2013 Professional (though I am not!) and just upgraded to Intel...
View Articlefailure to compile variadic template function
icc 15.0.0 fails to compile the following#include <utility> struct S { enum E {A,B}; // convert run-time variable e to a compile-time variable template<template<E> class F, typename......
View ArticleComposer XE 2015 Update 2 and Visual Studio 2010
The Windows C++ Composer XE 2015 Update 2 installer will not let me select "Integration into Visual Studio 2010".Both Visual Studio 2010 and 2013 are installed on my system, and the installer offers to...
View ArticleInformation about Intel Compiler
Hello, I' new here, my name is Sabino and I lead my own indie development. Intel Compiler caught my attention, so I decided to get more information about this software. Benchmark affirms that...
View ArticleBug: C++11 non-POD thread_local causes reinitialization of non-thread_local...
Using a thread_local non-POD type seems to cause all static but non-thread_local variables (which should only be initialized once) to be reconstructed on every access to the thread_local...
View ArticleAnnouncing new product: Intel® Data Analytics Acceleration Library 2016 Beta
We are pleased to announce the release of Intel® Data Analytics Acceleration Library 2016 Beta! Intel® Data Analytics Acceleration Library is a C++ and Java API library of optimized analytics building...
View ArticleLinker Problems with Nonstandard GCC Installation
In our CentOS 6.6 system we have a nonstandard gcc installation - let's say it's /opt/gcc49 - and the "standard" gcc installation as well, both with their own includes and libstdc++. There's an option...
View Article[OS X] a tuple of tuples
The following code contains a std::tuple of tuples. It can be successfully compiled with c++ compiler provided by Apple but fails with icpc-15.0.2.132 under OS X 10.10(Yosemite).#include <tuple>...
View Article"internal error: backend signal" when compilng "DRMAA for PBS"
Hello,On two separate systems I've attempted to compile "DRMAA for PBS" (found here). It successfully compiles with gcc and fails with icc resulting in the "interal error: backend signal". From what I...
View ArticleA possible bug found in ICC compiler with inline ASM
I found a bug when using the inline ASM of Intel Parallel Studio XE 2015 Update 2 Composer Edition for C++ Windows. Since I'm not very familiar with inline ASM, I'm not sure if it is a bug. #include...
View ArticleProblem compiling with armadillo
Hello all,I'm using aramadillo (http://arma.sourceforge.net) to elegantly manipulate arrays. All was working well till the last version (4.650.2). Now it fails compiling with icpc (15.0.1, Linux)...
View Article'Segmentation violation signal raised' when xiar runs
I am trying to compile chromium 41.0.2272.64 (64 bit) using icc on Linux. icpc --version showsicpc (ICC) 15.0.2 20150121 Copyright (C) 1985-2015 Intel Corporation. All rights reserved.I compile the...
View Articleerror: class "__m128" has no suitable assignment operator
This code #include <xmmintrin.h> volatile __m128 a, b; void test(void){ a = b;} produces this error$ /opt/intel/composerxe/bin/icpc -c test.cctest.cc(7): error: class "__m128" has no suitable...
View ArticleRight Intel C++ compiler for 64-bit machine
Hello,I just installed the Intel® Parallel Studio XE Professional Edition for C++ Linux* (evaluation version) for my Ubuntu 14.04.2 machine running on a "Intel Corporation Xeon E3-1200 Processor...
View ArticleOptimization problems with std::array maybe due to RVO
Hi,I discovered a source of slowdown in my program, due to the usage of std::array. To gain a better understanding of what was going on, I have used my own implementation of std::array, and the...
View ArticleVisual Studio 2015 Integration
A somewhat tedious question: with what release can we expect Visual Studio 2015 integration?Is there a "hack-ish" way to get ICC to compile using the VC2015 standard libraries? Or better still to...
View ArticleLNK1104 When trying to build on Windows network share
Hi, I can't build when the output directory for my project is on a Windows network share.The build log contains the following: 1>LINK : : error LNK1104: cannot open file...
View ArticleVariadic constructor with enable_if not found? (C++11)
I'm having a bit of trouble with the following C++11 code fragment and icpc 15.0.0. This example is compiled correctly by g++ 4.9. I essentially have a templated vector class (with its scalar type T...
View Article__FUNCTION__ is not treated as string literal for the purposes of string...
I'm trying to compile some MSC code that contains the following pragma:void myFunc(int a, double b) { #pragma comment(linker, "/EXPORT:"__FUNCTION__"="__FUNCDNAME__",PRIVATE") ... ...which handy to...
View ArticleInlining effect on Inside/Outside class definition
Hi,If you have a method and you want to give the compiler a hint that it is a good idea to inline it, you currently have 2 solutions. The first one is to define the methods when you declare your...
View Article