Intel® oneAPI DPC++/C++ Compiler
Talk to fellow users of Intel® oneAPI DPC++/C++ Compiler and companion tools like Intel® oneAPI DPC++ Library, Intel® DPC++ Compatibility Tool, and Intel® Distribution for GDB*

DPCPPCFG environment variable?

mike-nolta
Einsteiger
3.201Aufrufe

Is there a way to pass default options to the dpcpp compiler? I tried setting the DPCPPCFG environment variable, similar to how icx recognizes ICXCFG, but it didn't work.

 

Our gcc is installed in an unusual location, so i need a way of passing --gcc-toolchain=/path/to/gcc. I can't use __INTEL_PRE_CFLAGS because then the classic compilers complain about an unrecognized option.

 

0 Kudos
10 Antworten
VidyalathaB_Intel
Moderator
3.165Aufrufe

Hi,

Thanks for reaching out to us.

Could you please provide us OS environment details and the version of the compiler you are using

Please refer the list of supported environment variables for oneapi compilers in the following link

https://software.intel.com/content/www/us/en/develop/documentation/oneapi-dpcpp-cpp-compiler-dev-guide-and-reference/top/compilation/supported-environment-variables.html

>> Is there a way to pass default options to the dpcpp compiler

We are working on this issue and we will get back to you soon.

Regards,

Vidya.



mike-nolta
Einsteiger
3.153Aufrufe

OS is Centos7, and dpcpp version is 2021.3.0

VidyalathaB_Intel
Moderator
3.129Aufrufe

Hi,

Thanks for providing the details.

Please find the system requirements for oneAPI DPC++ compiler from the below link

https://software.intel.com/content/www/us/en/develop/articles/intel-oneapi-dpcpp-system-requirements.html

As per the requirements for dpcpp compiler, CentOS 7 is not supported.

So we suggest you to try using supported version and let us know if you face any issues.

Regards,

Vidya.

 

VidyalathaB_Intel
Moderator
3.090Aufrufe

Hi,

Reminder:

 Please confirm if your issue is resolved so that we can close this thread from our end.

Regards,

Vidya.

 

mike-nolta
Einsteiger
3.072Aufrufe

I'm not sure. Will there be a mechanism like DPCPPCFG in the next release?

VidyalathaB_Intel
Moderator
3.036Aufrufe

Hi,

From your initial query we see that you have mentioned multiple compilers.

Could you please share the details of your use case ( and also script file if any) so that we can try it from our end.

>> I can't use __INTEL_PRE_CFLAGS because then the classic compilers complain 

Could you be more specific regarding the issue while using __INTEL_PRE_CFLAGS classic compilers.

Regards,

Vidya.

 

mike-nolta
Einsteiger
2.988Aufrufe

I'm installing the oneAPI suite on an HPC cluster. Like most HPC clusters, we use our own build of gcc and not the OS package.

 

If i set __INTEL_PRE_CFLAGS="--gcc-toolchain=/path/to/gcc", that works for icpx and (maybe) dpcpp, but not icpc since it doesn't recognize the --gcc-toolchain flag.

 

So i'm using the ICPCCFG, ICPXCFG, ... environment variables to pass different options to the different compilers, but DPCPPCFG is not recognized.

 

VidyalathaB_Intel
Moderator
2.946Aufrufe

Hi,

>>icpc since it doesn't recognize the --gcc-toolchain flag.

Please refer the below link to use gcc with icpc compiler

https://software.intel.com/content/www/us/en/develop/documentation/cpp-compiler-developer-guide-and-reference/top/compiler-reference/compiler-options/compiler-option-details/compatibility-options/gcc-name.html

Instead of using DPCPPCFG, you can also add the path of configuration file in your makefile where dpcpp is called.

For example:

:/tmp$ cat Makefile

CC=dpcpp @/tmp/dpcpp.cfg
CFLAGS=-I.
hellomake:
       $(CC) -c -g hello.cpp

We checked it from our end on CentOS 8 and it is working fine.

And also please make sure the options which you are using in .cfg file are supported otherwise you will get errors saying : Unsupported command line options encountered.

You can get the list of options both supported and unsupported options by oneAPI compilers using below command

 icpx --qnextgen-diag

Regards,

Vidya

 

 

 

 

VidyalathaB_Intel
Moderator
2.882Aufrufe

Hi,

Reminder:

Could you please confirm us if your issue is resolved and whether we can close this thread from our end?

Regards,

Vidya.


VidyalathaB_Intel
Moderator
2.831Aufrufe

Hi,


We assume that your issue is resolved. If you need any additional assistance from intel please post a new question as this thread will no longer be monitored.


Have a good day!


Regards,

Vidya.


Antworten