Allow -c to be specified with -E in cosmocc

This commit is contained in:
Justine Tunney 2024-07-31 02:09:15 -07:00
parent 4ed4a1095a
commit f8cfc89eba
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
10 changed files with 41 additions and 4 deletions

View file

@ -79,6 +79,10 @@
#undef __linux__
#endif
#ifdef __gnu_linux__
#undef __gnu_linux__
#endif
#ifndef __BIGGEST_ALIGNMENT__
#define __BIGGEST_ALIGNMENT__ 16
#endif

View file

@ -155,5 +155,6 @@ exp10 (double x)
__strong_reference(exp10, pow10);
#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
__weak_reference(exp10, pow10l);
__weak_reference(exp10, exp10l);
#endif

View file

@ -52,6 +52,6 @@ long double exp10l(long double x)
return powl(10.0, x);
}
__weak_reference(exp10l, pow10l);
__strong_reference(exp10l, pow10l);
#endif /* long double is long */