clang (701:f184ffeb0f02) clang (2079:0dcffa83cac2)
1
2# Copyright (C) Igor Sysoev
3# Copyright (C) NGINX, Inc.
4
5
6# C language features.
7
8

--- 162 unchanged lines hidden (view full) ---

171 char c;
172 int i;
173 } __attribute__ ((__packed__));
174
175 int main() {
176 return 1;
177 }"
178. auto/feature
1
2# Copyright (C) Igor Sysoev
3# Copyright (C) NGINX, Inc.
4
5
6# C language features.
7
8

--- 162 unchanged lines hidden (view full) ---

171 char c;
172 int i;
173 } __attribute__ ((__packed__));
174
175 int main() {
176 return 1;
177 }"
178. auto/feature
179
180
181nxt_feature="GCC __attribute__ unused"
182nxt_feature_name=NXT_HAVE_GCC_ATTRIBUTE_UNUSED
183nxt_feature_run=
184nxt_feature_incs=
185nxt_feature_libs=
186nxt_feature_test="static void f(void) __attribute__ ((__unused__));
187
188 static void f(void)
189 {
190 return;
191 }
192
193 int main(void) {
194 return 0;
195 }"
196. auto/feature