Skip Menu |

This queue is for tickets about the Panda-Export CPAN distribution.

Report information
The Basics
Id: 92625
Status: resolved
Priority: 0/
Queue: Panda-Export

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: clang support
FreeBSD does not use gcc and g++ starting with version 10, but clang instead. So a binary called "g++" is not available here. To be portable, it's probably better to use "c++", which should resolve to the available C++ compiler: g++ on gcc systems and clang++ on clang systems. Regards, Slaven
Птн Янв 31 14:42:08 2014, SREZIC писал: Show quoted text
> FreeBSD does not use gcc and g++ starting with version 10, but clang > instead. So a binary called "g++" is not available here. To be > portable, it's probably better to use "c++", which should resolve to > the available C++ compiler: g++ on gcc systems and clang++ on clang > systems. > > Regards, > Slaven
Changed g++ -> c++. Thanks.