gpt4 book ai didi

c++ - 如何编译 Hinnant 的 short_alloc 分配器

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:30:05 28 4
gpt4 key购买 nike

我想试试新的 Hinnant's short_alloc allocator据我所知,它取代了旧的 stack_alloc分配器。但是,我无法编译 vector 示例。 g++ 说:

~# g++ -std=c++11 stack-allocator-test.cpp -o stack-allocator-test
In file included from stack-allocator-test.cpp:6:0:
short_alloc.h:11:13: error: ‘alignment’ is not a type
short_alloc.h:11:22: error: ISO C++ forbids declaration of ‘alignas’ with no type [-fpermissive]
short_alloc.h:11:22: error: expected ‘;’ at end of member declaration

据我所知,g++ 提示第 10 行11:

static const std::size_t alignment = 16;
alignas(alignment) char buf_[N];

编译器似乎不喜欢alignas 的“表达式版本”但它只需要“type-id 版本”。

我在 Ubuntu 12.10 下使用 g++ 4.7.2

~# g++ --version
g++ (Ubuntu/Linaro 4.7.2-2ubuntu1) 4.7.2

可能我遗漏了一些明显的东西,但我无法弄清楚。任何帮助,将不胜感激。 (请不要告诉我必须升级到较新的 g++,我懒得那样做 :)

最佳答案

g++-4.7.2 不支持对齐方式。来自 http://gcc.gnu.org/projects/cxx0x.html :

Alignment support | N2341 | GCC 4.8

尝试使用 g++-4.8.0 或 clang;或者你可以使用 __attribute__((aligned)) :

__attribute__((aligned (8))) char buf_[12];

请注意,__attribute__((aligned)) 只接受某些整数常量表达式(字面量、模板参数);它不接受 static const 变量。

关于c++ - 如何编译 Hinnant 的 short_alloc 分配器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15156005/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com