Displaying 20 results from an estimated 91 matches for "cxx11".
2015 Aug 10
2
Clang attributes issue
Hi All,
Sorry for my previous email: there was some issue with my email system.
Hope you don't have any problems with reading my message now.
Aaron,
Not long ago I met a problem related to clang attributes implementation. I
tried to add a new CXX11 attribute with separated namespace like here:
def FooAligned : InheritableAttr {
let Spellings = [CXX11<"_Foo_attrs", "aligned">];
….
But I was not able to do it because name “aligned” was used in another
well-known attribute. After some research I found that t...
2017 Apr 18
3
R 3.4 has broken C++11 support
...t (I?m using the mirror to have a working link) broke C++11 compilation.
Before (and still now, according to the comments in the configure script), it?s sufficient to just have ?SystemRequirements: C++11? in the DESCRIPTION file.
But now ?R CMD install? fails with ?C++11 standard requested but CXX11 is not defined?, which is, according to the documentation , a lie.
I can?t even circumvent this, as setting ?CXX11=$(CXX)? in the src/Makevars file fails with ?CXX definition recursive?, and hardcoding ?CXX11=g++? is a bad idea.
Did I do sth. wrong or is the C++11 support in R just broken atm.?...
2017 Mar 18
2
Experimental CXX_STD problem in R 3.4
R 3.4 has 'experimental' support for setting CXX_STD to CXX98 / CXX11
/ CXX14 / CXX17.
However on most platforms, the R configuration seems to leave the
CXX1Y and CXX1Z fields blank in "${R_HOME}/etc/Makeconf" (rather than
falling back on default CXX). Therefore specifying e.g CXX_STD= CXX14
will fail build with cryptic errors (due to compiling with CXX=&q...
2014 May 15
2
[LLVMdev] 3.4 branch gcc 4.9 build error
...global namespace
>> using ::max_align_t;
>> ~~^
>> 1 error generated.
>>
> Is this trunk or the 3.4 branch?
>
>> As the fixes got merged to the release_34 branch, I went to check the
>> local configure options and noticed I was passing --enable-cxx11. If I
>> omit that, there's no max_align_t error. I don't remember when I added
>> that, but it used to build prior to gcc 4.9. Just so I understand, is
>> that flag meant to be enabled (and known to work) when llvm is built
>> by clang, or is that also in need of fi...
2017 Mar 19
3
Experimental CXX_STD problem in R 3.4
...ect.org> on behalf of Dirk Eddelbuettel <edd at debian.org>
Sent: 18 March 2017 15:55
To: Jeroen Ooms
Cc: r-devel
Subject: Re: [Rd] Experimental CXX_STD problem in R 3.4
On 18 March 2017 at 14:21, Jeroen Ooms wrote:
| R 3.4 has 'experimental' support for setting CXX_STD to CXX98 / CXX11
| / CXX14 / CXX17.
R 3.1.0 introduced CXX11 support. R 3.4.0 will have CXX14 support. So I
would only refer to the CXX17 part as experimental.
| However on most platforms, the R configuration seems to leave the
| CXX1Y and CXX1Z fields blank in "${R_HOME}/etc/Makeconf" (rather than
|...
2014 May 15
3
[LLVMdev] 3.4 branch gcc 4.9 build error
...usr/lib64/[...]/c++/4.9.0/cstddef:51:11: error:
no member named 'max_align_t' in the global namespace
using ::max_align_t;
~~^
1 error generated.
As the fixes got merged to the release_34 branch, I went to check the
local configure options and noticed I was passing --enable-cxx11. If I
omit that, there's no max_align_t error. I don't remember when I added
that, but it used to build prior to gcc 4.9. Just so I understand, is
that flag meant to be enabled (and known to work) when llvm is built
by clang, or is that also in need of fixing for gcc 4.9?
2014 May 15
2
[LLVMdev] 3.4 branch gcc 4.9 build error
...gt;>> ~~^
>>>> 1 error generated.
>>>>
>>> Is this trunk or the 3.4 branch?
>>>
>>>> As the fixes got merged to the release_34 branch, I went to check the
>>>> local configure options and noticed I was passing --enable-cxx11. If I
>>>> omit that, there's no max_align_t error. I don't remember when I added
>>>> that, but it used to build prior to gcc 4.9. Just so I understand, is
>>>> that flag meant to be enabled (and known to work) when llvm is built
>>>> by clan...
2020 Oct 08
1
Installing package fails at "testing if installed package can be loaded from temporary location"
Dirk, thank you a thousand times.
Indeed, src/Makevars was wrong. I modified Makevars so that now looks like
the below and the package now compiled and linked properly.
CXX_STD = CXX11
PKG_LIBS += $(SHLIB_OPENMP_CXXFLAGS) $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)
$(shell ${R_HOME}/bin/Rscript -e "RcppParallel::RcppParallelLibs()")
PKG_CXXFLAGS = $(SHLIB_OPENMP_CXXFLAGS) -I../inst/include
Best,
Sam
On Thu, Oct 8, 2020 at 3:39 PM Dirk Eddelbuettel <edd at debian.org>...
2017 Apr 18
0
R 3.4 has broken C++11 support
A user with the email address flying-sheep at web.de has submitted a bug
report on this topic.?
https://bugs.r-project.org/bugzilla/show_bug.cgi?id=17260
Assuming that you are the same person, I will address the issue here
first.
If you get the message ?C++11 standard requested but CXX11 is not
defined? then this means that there is no available C++11 compiler on
your computer. The presence or absence of a working C++11 compiler is
determined at configure time when R is built.
The tests used by R's configure script to determine C++11 support are
more stringent in R 3.4.0 than...
2012 Nov 26
2
[LLVMdev] How to enable c++11 in a llvm project?
...rsion). The clang++ runs as expected when I compile a hello program with
c++11 enabled.
I created a project (copied from sample/) where there are some C++ source
files with c++11 features. I configured my project using the following
command:
$ CXXFLAGS="-std=c++11" ../configure --enable-cxx11
However, I found that the clang++ did not build my project with the "
-std=c++" option[1].
Could anyone kindly show me how to enable C++11 in a LLVM project, please?
Thank you.
Miangliang.
[1] I get the detailed options building my project using 'make VERBOSE=1'
--
Mingliang L...
2012 Nov 27
0
[LLVMdev] How to enable c++11 in a llvm project?
Hi,
I use the following line to configure, which can enable the c++11 in the
project building. However, I don't think it's an elegant way to do the
trick.
$ CXX="clang++ -std=c++11" ../configure
I don't know why "-enable-cxx11" doesn't work as expected when I configure
the project.
Regards.
On Mon, Nov 26, 2012 at 7:34 PM, Mingliang LIU <liuml07 at gmail.com> wrote:
> Hi,
>
> I'm using the latest LLVM (r168491) built by GCC 4.7.2 (Gentoo masked
> version). The clang++ runs as expected w...
2016 Jun 14
2
Buildbot numbers for the last week of 6/05/2016 - 6/11/2016
...| 03:17:11
clang-x86_64-linux-selfhost-modules | 02:58:31
clang-cmake-aarch64-quick | 02:39:58
libcxx-libcxxabi-x86_64-linux-ubuntu-unstable-abi | 02:25:49
libcxx-libcxxabi-x86_64-linux-ubuntu-gcc49-cxx11 | 02:25:33
libcxx-libcxxabi-x86_64-linux-ubuntu-msan | 02:22:56
llvm-mips-linux | 02:22:54
libcxx-libcxxabi-x86_64-linux-ubuntu-tsan | 02:22:39
libcxx-libcxxabi-x86_64-linux-ubuntu-cxx03 | 02:19:56...
2014 Mar 30
2
CXX_STD and configure.ac in packages
...AC_CONFIG_HEADERS([src/config.h])
AC_LANG(C++)
AC_CHECK_HEADERS([unordered_map tr1/unordered_map])
AC_OUTPUT
Use of configure.ac does not seem to be entirely consistent with section 1.2.4
of Writing R Extensions, where one is advised that to use C++(11? see below)
code one should
CXX_STD = CXX11
in Makevars(.win). My code does not require a compiler that supports the full
C++11 feature set. In addition, I do not understand the logic of setting a
variable that influences compiler flags in Makevars -- configure.ac will see a
compiler with inaccurate flags.
Is use of configure.ac orthogo...
2012 Nov 27
1
[LLVMdev] How to enable c++11 in a llvm project?
...gt; wrote:
> Hi,
>
> I use the following line to configure, which can enable the c++11 in the
> project building. However, I don't think it's an elegant way to do the
> trick.
> $ CXX="clang++ -std=c++11" ../configure
>
> I don't know why "-enable-cxx11" doesn't work as expected when I configure
> the project.
>
> Regards.
>
>
> On Mon, Nov 26, 2012 at 7:34 PM, Mingliang LIU <liuml07 at gmail.com> wrote:
>
>> Hi,
>>
>> I'm using the latest LLVM (r168491) built by GCC 4.7.2 (Gentoo masked
&g...
2017 Mar 18
0
Experimental CXX_STD problem in R 3.4
On 18 March 2017 at 14:21, Jeroen Ooms wrote:
| R 3.4 has 'experimental' support for setting CXX_STD to CXX98 / CXX11
| / CXX14 / CXX17.
R 3.1.0 introduced CXX11 support. R 3.4.0 will have CXX14 support. So I
would only refer to the CXX17 part as experimental.
| However on most platforms, the R configuration seems to leave the
| CXX1Y and CXX1Z fields blank in "${R_HOME}/etc/Makeconf" (rather than
|...
2016 Jun 28
0
Buildbot numbers for the last week of 6/19/2016 - 6/25/2016
...| 02:38:03
clang-cmake-thumbv7-a15 | 02:36:39
clang-cmake-aarch64-quick | 02:30:09
clang-cmake-aarch64-42vma | 02:12:53
lldb-x86_64-ubuntu-14.04-buildserver | 02:02:40
libcxx-libcxxabi-x86_64-linux-ubuntu-gcc49-cxx11 | 01:55:09
clang-3stage-ubuntu | 01:48:54
clang-cuda-build | 01:43:56
sanitizer-ppc64be-linux | 01:43:19
polly-amd64-linux | 01:41:23
clang-hexagon-elf...
2016 Mar 22
0
Buildbot numbers for week of 3/06/2016 - 3/12/2016
...| 12
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-msan | 10
| 0 | 0.0
lldb-x86_64-debian-clang | 289
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-gcc49-cxx11 | 12
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-cxx1z | 10
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-cxx14 | 12
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-cxx11...
2016 Mar 22
0
Buildbot numbers for week of 3/13/2016 - 3/19/2016
...xceptions | 10
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-asan | 10
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-cxx03 | 10
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-cxx11 | 10
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-cxx14 | 10
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-cxx1z | 10
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-gc...
2016 May 23
0
Buildbot numbers for the week of 5/15/2016 - 5/21/2016
...xceptions | 8
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-asan | 11
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-cxx03 | 10
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-cxx11 | 12
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-cxx14 | 12
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-cxx1z | 11
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-gc...
2016 May 31
0
Buildbot numbers for the last week of 5/22/2016 - 5/28/2016
...abi | 11
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-tsan | 12
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-msan | 12
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-gcc49-cxx11 | 11
| 0 | 0.0
llvm-sphinx-docs | 91
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-cxx1z | 11
| 0 | 0.0
libcxx-libcxxabi-x86_64-linux-ubuntu-cxx14...