diff options
author | Valentin Bartenev <vbart@nginx.com> | 2017-07-18 17:13:40 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2017-07-18 17:13:40 +0300 |
commit | 9d707800b0c7090424ae6426423041e8755623ce (patch) | |
tree | e5f74ba80479ecd97d937eade77f13026022fd00 /auto/clang | |
parent | beb4de21bb0709154b227821dd090e797d256ce5 (diff) | |
download | unit-9d707800b0c7090424ae6426423041e8755623ce.tar.gz unit-9d707800b0c7090424ae6426423041e8755623ce.tar.bz2 |
More accurate "packed" attribute declaration.
Diffstat (limited to 'auto/clang')
-rw-r--r-- | auto/clang | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -146,3 +146,18 @@ nxt_feature_test="#include <stdlib.h> return 0; }" . auto/feature + + +nxt_feature="GCC __attribute__ packed" +nxt_feature_name=NXT_HAVE_GCC_ATTRIBUTE_PACKED +nxt_feature_run= +nxt_feature_path= +nxt_feature_libs= +nxt_feature_test="struct __attribute__ ((__packed__)) s { + char c; + }; + + int main() { + return 1; + }" +. auto/feature |