Browse Source
Merge pull request #3645 from martin-frbg/issue3644
Fix quotes around compiler args in C11 check
tags/v0.3.21
Martin Kroeker
GitHub
4 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
c_check
|
|
|
@@ -244,7 +244,7 @@ case "$data" in |
|
|
|
tmpd=`mktemp -d` |
|
|
|
tmpf="$tmpd/a.c" |
|
|
|
printf "#include <stdatomic.h>\nint main(void){}\n" >> "$tmpf" |
|
|
|
args=' -c -o $tmpf.o $tmpf' |
|
|
|
args=" -c -o $tmpf.o $tmpf" |
|
|
|
c11_atomics=1 |
|
|
|
{ |
|
|
|
$compiler_name $flags $args >/dev/null 2>&1 |
|
|
|
|