This repository has been archived by the owner on Sep 27, 2019. It is now read-only.
Array allocation of TupleHeader
fails compilation on Ubuntu 18.04
#1433
Labels
I just tried to compile latest master on Ubuntu 18.04 GCC7, and it looks to be failing compilation when instantiating the array of
TupleHeader
s in theTileGroup
here. The problem stems from the fact thatTupleHeader
is marked as 64-byte aligned (i.e.,__attribute__((aligned(64)))
) , but array allocations don't accept alignment parameters and, hence, don't guarantee alignment.We can add the compiler flag
-faligned-new
to handle it - not sure how it plays with GCC5/6. We also don't support Ubuntu 18.04 officially, but wanted to track it when we do start.The text was updated successfully, but these errors were encountered: