Displaying 8 results from an estimated 8 matches for "201103l".
Did you mean:
201103
2011 Nov 29
2
Help with recast() syntax
...ata similar to the following:
DF <- structure(list(X = 1:22, RESULT = structure(c(2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L), .Label = c("NEG", "POS"), class = "factor"), YR_MO = c(201011L,
201012L, 201101L, 201102L, 201103L, 201104L, 201105L, 201106L,
201107L, 201108L, 201109L, 201011L, 201012L, 201101L, 201102L,
201103L, 201104L, 201105L, 201106L, 201107L, 201108L, 201109L
), TOT_TESTS = c(66L, 98L, 109L, 122L, 113L, 111L, 113L, 146L,
124L, 130L, 120L, 349L, 393L, 376L, 371L, 396L, 367L, 406L, 383L,
394L, 412L, 3...
2013 May 13
2
[LLVMdev] ASan unit test/libcxx build break
...ined(__linux__) condition to the code below.
Now it says that on linux with --std=c++0x (or --std=c++11) the system
stdlib.h header must define aligned_alloc(). Really?
include/__config:
#if ( defined(__FreeBSD__) || defined(__linux__) ) && (__ISO_C_VISIBLE
>= 2011 || __cplusplus >= 201103L)
#define _LIBCPP_HAS_QUICK_EXIT
#define _LIBCPP_HAS_C11_FEATURES
#endif
include/cstdlib:
#include <__config>
#include <stdlib.h>
#ifdef _LIBCPP_HAS_C11_FEATURES
using ::aligned_alloc;
#endif
On Mon, May 13, 2013 at 9:37 AM, Kostya Serebryany <kcc at google.com> wrote:
> +eu...
2013 May 13
0
[LLVMdev] ASan unit test/libcxx build break
...code below.
> Now it says that on linux with --std=c++0x (or --std=c++11) the system
> stdlib.h header must define aligned_alloc(). Really?
>
> include/__config:
>
> #if ( defined(__FreeBSD__) || defined(__linux__) ) && (__ISO_C_VISIBLE
> >= 2011 || __cplusplus >= 201103L)
> #define _LIBCPP_HAS_QUICK_EXIT
> #define _LIBCPP_HAS_C11_FEATURES
> #endif
>
>
I added that line since libc on linux defines at_quick_exit.
>
> include/cstdlib:
>
> #include <__config>
> #include <stdlib.h>
> #ifdef _LIBCPP_HAS_C11_FEATURES
> us...
2016 Jul 06
2
GCC prerequisites for building LLVM head?
...sus Linux distros? I can't try this on Linux until tomorrow as I am working from home and don't have a Linux setup that uses v4.9.3.
The 'std::to_string' functions are provided in a block that is conditionally included as follows (line #2847 in my copy):
#if __cplusplus >= 201103L && defined(_GLIBCXX_USE_C99)
#include <ext/string_conversions.h>
namespace std _GLIBCXX_VISIBILITY(default)
{
_GLIBCXX_BEGIN_NAMESPACE_VERSION
The test '__cplusplus >= 201103L' evaluates true in all previous cases, so it would appear that '_GLIBCXX_US...
2016 Jul 06
3
GCC prerequisites for building LLVM head?
Is there is minimum required version for GCC to build LLVM from the head
revision?
I have GCC v4.9.3, but 'Tools/sancov/sancov.cc' won't build because
'std::to_string' does not exist. When running CMake it did not flag GCC
v4.9.3 as too old, and it is passing the '-std=gnu++11' option, but
apparently this version of GCC is not fully C++ 11 compliant, or at least
2013 May 13
2
[LLVMdev] ASan unit test/libcxx build break
...says that on linux with --std=c++0x (or --std=c++11) the system
>> stdlib.h header must define aligned_alloc(). Really?
>>
>> include/__config:
>>
>> #if ( defined(__FreeBSD__) || defined(__linux__) ) && (__ISO_C_VISIBLE
>> >= 2011 || __cplusplus >= 201103L)
>> #define _LIBCPP_HAS_QUICK_EXIT
>> #define _LIBCPP_HAS_C11_FEATURES
>> #endif
>>
>
> I added that line since libc on linux defines at_quick_exit.
>
>
>>
>>
>> include/cstdlib:
>>
>> #include <__config>
>> #include <...
2013 May 13
0
[LLVMdev] ASan unit test/libcxx build break
+eugenis
I see this while running 'check-msan'.
On Sun, May 12, 2013 at 9:10 PM, David Blaikie <dblaikie at gmail.com> wrote:
> Is no one else seeing this? (I've been seeing it for a few days)
>
> In file included from
>
> /usr/local/google/home/blaikie/dev/llvm/src/utils/unittest/googletest/gtest-all.cc:39:
> In file included from
>
>
2013 May 12
2
[LLVMdev] ASan unit test/libcxx build break
Is no one else seeing this? (I've been seeing it for a few days)
In file included from
/usr/local/google/home/blaikie/dev/llvm/src/utils/unittest/googletest/gtest-all.cc:39:
In file included from
/usr/local/google/home/blaikie/dev/llvm/src/utils/unittest/googletest/include/gtest/gtest.h:57:
In file included from