mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-17 16:10:29 +00:00
Fold LIBC_UNICODE into LIBC_STR
This commit is contained in:
parent
17aea99bb3
commit
367d06d9e4
173 changed files with 170 additions and 355 deletions
1
third_party/argon2/argon2.mk
vendored
1
third_party/argon2/argon2.mk
vendored
|
@ -26,7 +26,6 @@ THIRD_PARTY_ARGON2_A_DIRECTDEPS = \
|
|||
LIBC_RUNTIME \
|
||||
LIBC_SYSV_CALLS \
|
||||
LIBC_STR \
|
||||
LIBC_UNICODE \
|
||||
LIBC_STUBS
|
||||
|
||||
THIRD_PARTY_ARGON2_A_DEPS := \
|
||||
|
|
2
third_party/chibicc/chibicc.h
vendored
2
third_party/chibicc/chibicc.h
vendored
|
@ -23,7 +23,7 @@
|
|||
#include "libc/str/str.h"
|
||||
#include "libc/time/struct/tm.h"
|
||||
#include "libc/time/time.h"
|
||||
#include "libc/unicode/unicode.h"
|
||||
#include "libc/str/unicode.h"
|
||||
#include "libc/x/x.h"
|
||||
#include "third_party/gdtoa/gdtoa.h"
|
||||
#include "tool/build/lib/javadown.h"
|
||||
|
|
1
third_party/chibicc/chibicc.mk
vendored
1
third_party/chibicc/chibicc.mk
vendored
|
@ -56,7 +56,6 @@ THIRD_PARTY_CHIBICC_A_DIRECTDEPS = \
|
|||
LIBC_STUBS \
|
||||
LIBC_SYSV \
|
||||
LIBC_TIME \
|
||||
LIBC_UNICODE \
|
||||
LIBC_X \
|
||||
THIRD_PARTY_COMPILER_RT \
|
||||
THIRD_PARTY_DLMALLOC \
|
||||
|
|
1
third_party/chibicc/test/test.mk
vendored
1
third_party/chibicc/test/test.mk
vendored
|
@ -44,7 +44,6 @@ THIRD_PARTY_CHIBICC_TEST_DIRECTDEPS = \
|
|||
LIBC_STR \
|
||||
LIBC_STUBS \
|
||||
LIBC_TINYMATH \
|
||||
LIBC_UNICODE \
|
||||
LIBC_X \
|
||||
THIRD_PARTY_CHIBICC \
|
||||
THIRD_PARTY_COMPILER_RT
|
||||
|
|
|
@ -73,7 +73,6 @@ THIRD_PARTY_DOUBLECONVERSION_A_DIRECTDEPS = \
|
|||
LIBC_SYSV \
|
||||
LIBC_STR \
|
||||
LIBC_STUBS \
|
||||
LIBC_UNICODE \
|
||||
LIBC_TINYMATH \
|
||||
THIRD_PARTY_GDTOA \
|
||||
THIRD_PARTY_LIBCXX
|
||||
|
|
1
third_party/finger/finger.mk
vendored
1
third_party/finger/finger.mk
vendored
|
@ -26,7 +26,6 @@ THIRD_PARTY_FINGER_A_DIRECTDEPS = \
|
|||
LIBC_DNS \
|
||||
LIBC_SOCK \
|
||||
LIBC_TIME \
|
||||
LIBC_UNICODE \
|
||||
THIRD_PARTY_MUSL \
|
||||
THIRD_PARTY_GETOPT
|
||||
|
||||
|
|
2
third_party/gdtoa/strtod_l.c
vendored
2
third_party/gdtoa/strtod_l.c
vendored
|
@ -16,7 +16,7 @@
|
|||
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
||||
│ PERFORMANCE OF THIS SOFTWARE. │
|
||||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "third_party/gdtoa/gdtoa.h"
|
||||
|
||||
double strtod_l(const char *s, char **endptr, locale_t l) {
|
||||
|
|
2
third_party/gdtoa/strtof_l.c
vendored
2
third_party/gdtoa/strtof_l.c
vendored
|
@ -16,7 +16,7 @@
|
|||
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
||||
│ PERFORMANCE OF THIS SOFTWARE. │
|
||||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "third_party/gdtoa/gdtoa.h"
|
||||
|
||||
float strtof_l(const char *s, char **sp, locale_t l) {
|
||||
|
|
2
third_party/gdtoa/strtold_l.c
vendored
2
third_party/gdtoa/strtold_l.c
vendored
|
@ -29,7 +29,7 @@
|
|||
│ THIS SOFTWARE. │
|
||||
│ │
|
||||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "third_party/gdtoa/gdtoa.h"
|
||||
|
||||
/**
|
||||
|
|
2
third_party/gdtoa/wcstod.c
vendored
2
third_party/gdtoa/wcstod.c
vendored
|
@ -19,7 +19,7 @@
|
|||
#include "libc/assert.h"
|
||||
#include "libc/fmt/conv.h"
|
||||
#include "libc/runtime/runtime.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
|
||||
double wcstod(const wchar_t *nptr, wchar_t **endptr) {
|
||||
assert(!"not implemented");
|
||||
|
|
2
third_party/gdtoa/wcstof.c
vendored
2
third_party/gdtoa/wcstof.c
vendored
|
@ -19,7 +19,7 @@
|
|||
#include "libc/assert.h"
|
||||
#include "libc/fmt/conv.h"
|
||||
#include "libc/runtime/runtime.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "third_party/gdtoa/gdtoa.h"
|
||||
|
||||
float wcstof(const wchar_t *nptr, wchar_t **endptr) {
|
||||
|
|
2
third_party/gdtoa/wcstold.c
vendored
2
third_party/gdtoa/wcstold.c
vendored
|
@ -19,7 +19,7 @@
|
|||
#include "libc/assert.h"
|
||||
#include "libc/fmt/conv.h"
|
||||
#include "libc/runtime/runtime.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "third_party/gdtoa/gdtoa.h"
|
||||
|
||||
long double wcstold(const wchar_t *nptr, wchar_t **endptr) {
|
||||
|
|
2
third_party/gdtoa/wcstold_l.c
vendored
2
third_party/gdtoa/wcstold_l.c
vendored
|
@ -17,7 +17,7 @@
|
|||
│ PERFORMANCE OF THIS SOFTWARE. │
|
||||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#include "libc/fmt/conv.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "third_party/gdtoa/gdtoa.h"
|
||||
|
||||
long double wcstold_l(const wchar_t *nptr, wchar_t **endptr, locale_t l) {
|
||||
|
|
1
third_party/getopt/getopt.mk
vendored
1
third_party/getopt/getopt.mk
vendored
|
@ -31,7 +31,6 @@ THIRD_PARTY_GETOPT_A_DIRECTDEPS = \
|
|||
LIBC_NEXGEN32E \
|
||||
LIBC_STDIO \
|
||||
LIBC_STR \
|
||||
LIBC_UNICODE \
|
||||
LIBC_STUBS
|
||||
|
||||
THIRD_PARTY_GETOPT_A_DEPS := \
|
||||
|
|
2
third_party/libcxx/__bsd_locale_fallbacks.h
vendored
2
third_party/libcxx/__bsd_locale_fallbacks.h
vendored
|
@ -15,7 +15,7 @@
|
|||
|
||||
#include "third_party/libcxx/stdlib.h"
|
||||
#include "libc/mem/fmt.h"
|
||||
#include "libc/unicode/unicode.h"
|
||||
#include "libc/str/unicode.h"
|
||||
#include "third_party/libcxx/memory"
|
||||
|
||||
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
||||
|
|
2
third_party/libcxx/clocale
vendored
2
third_party/libcxx/clocale
vendored
|
@ -36,7 +36,7 @@ lconv* localeconv();
|
|||
*/
|
||||
|
||||
#include "third_party/libcxx/__config"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
|
||||
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
||||
#pragma GCC system_header
|
||||
|
|
1
third_party/libcxx/libcxx.mk
vendored
1
third_party/libcxx/libcxx.mk
vendored
|
@ -163,7 +163,6 @@ THIRD_PARTY_LIBCXX_A_DIRECTDEPS = \
|
|||
LIBC_SYSV \
|
||||
LIBC_TIME \
|
||||
LIBC_TINYMATH \
|
||||
LIBC_UNICODE \
|
||||
THIRD_PARTY_GDTOA
|
||||
|
||||
THIRD_PARTY_LIBCXX_A_DEPS := \
|
||||
|
|
2
third_party/libcxx/locale
vendored
2
third_party/libcxx/locale
vendored
|
@ -25,7 +25,7 @@
|
|||
#include "third_party/libcxx/ctime"
|
||||
#include "third_party/libcxx/cstdio"
|
||||
#ifdef _LIBCPP_HAS_CATOPEN
|
||||
# include "libc/unicode/locale.h"
|
||||
# include "libc/str/locale.h"
|
||||
# include "third_party/libcxx/nl_types.h"
|
||||
#endif
|
||||
|
||||
|
|
2
third_party/libcxx/locale.cc
vendored
2
third_party/libcxx/locale.cc
vendored
|
@ -27,7 +27,7 @@
|
|||
#include "third_party/libcxx/cwctype"
|
||||
#include "third_party/libcxx/__sso_allocator"
|
||||
#include "third_party/libcxx/include/atomic_support.hh"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "third_party/libcxx/__undef_macros"
|
||||
|
||||
// On Linux, wint_t and wchar_t have different signed-ness, and this causes
|
||||
|
|
2
third_party/linenoise/linenoise.c
vendored
2
third_party/linenoise/linenoise.c
vendored
|
@ -164,7 +164,7 @@
|
|||
#include "libc/sysv/consts/sig.h"
|
||||
#include "libc/sysv/consts/termios.h"
|
||||
#include "libc/sysv/errfuns.h"
|
||||
#include "libc/unicode/unicode.h"
|
||||
#include "libc/str/unicode.h"
|
||||
#include "net/http/escape.h"
|
||||
#include "third_party/linenoise/linenoise.h"
|
||||
#include "tool/build/lib/case.h"
|
||||
|
|
1
third_party/linenoise/linenoise.mk
vendored
1
third_party/linenoise/linenoise.mk
vendored
|
@ -28,7 +28,6 @@ THIRD_PARTY_LINENOISE_A_DIRECTDEPS = \
|
|||
LIBC_LOG \
|
||||
LIBC_SYSV_CALLS \
|
||||
LIBC_STR \
|
||||
LIBC_UNICODE \
|
||||
LIBC_STUBS \
|
||||
NET_HTTP
|
||||
|
||||
|
|
2
third_party/lua/loslib.c
vendored
2
third_party/lua/loslib.c
vendored
|
@ -36,7 +36,7 @@
|
|||
#include "libc/sysv/consts/exit.h"
|
||||
#include "libc/time/struct/tm.h"
|
||||
#include "libc/time/time.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "third_party/lua/lauxlib.h"
|
||||
#include "third_party/lua/lprefix.h"
|
||||
#include "third_party/lua/lua.h"
|
||||
|
|
2
third_party/lua/lua.mk
vendored
2
third_party/lua/lua.mk
vendored
|
@ -129,7 +129,6 @@ THIRD_PARTY_LUA_A_DIRECTDEPS = \
|
|||
LIBC_TIME \
|
||||
LIBC_X \
|
||||
LIBC_TINYMATH \
|
||||
LIBC_UNICODE \
|
||||
NET_HTTP \
|
||||
THIRD_PARTY_LINENOISE \
|
||||
THIRD_PARTY_DOUBLECONVERSION \
|
||||
|
@ -260,7 +259,6 @@ THIRD_PARTY_LUA_LUAC_DIRECTDEPS = \
|
|||
LIBC_STDIO \
|
||||
LIBC_STR \
|
||||
LIBC_SYSV \
|
||||
LIBC_UNICODE \
|
||||
THIRD_PARTY_LUA \
|
||||
TOOL_ARGS
|
||||
|
||||
|
|
2
third_party/lua/luaconf.h
vendored
2
third_party/lua/luaconf.h
vendored
|
@ -4,7 +4,7 @@
|
|||
#include "libc/dce.h"
|
||||
#include "libc/fmt/fmt.h"
|
||||
#include "libc/limits.h"
|
||||
#include "libc/unicode/unicode.h"
|
||||
#include "libc/str/unicode.h"
|
||||
#include "third_party/gdtoa/gdtoa.h"
|
||||
|
||||
#define LUA_USE_POSIX
|
||||
|
|
3
third_party/lz4cli/lz4cli.mk
vendored
3
third_party/lz4cli/lz4cli.mk
vendored
|
@ -42,8 +42,7 @@ THIRD_PARTY_LZ4CLI_DIRECTDEPS = \
|
|||
LIBC_INTRIN \
|
||||
LIBC_STDIO \
|
||||
LIBC_LOG \
|
||||
LIBC_TIME \
|
||||
LIBC_UNICODE
|
||||
LIBC_TIME
|
||||
|
||||
THIRD_PARTY_LZ4CLI_DEPS := \
|
||||
$(call uniq,$(foreach x,$(THIRD_PARTY_LZ4CLI_DIRECTDEPS),$($(x))))
|
||||
|
|
1
third_party/make/make.mk
vendored
1
third_party/make/make.mk
vendored
|
@ -124,7 +124,6 @@ THIRD_PARTY_MAKE_DIRECTDEPS = \
|
|||
LIBC_SYSV_CALLS \
|
||||
LIBC_TIME \
|
||||
LIBC_TINYMATH \
|
||||
LIBC_UNICODE \
|
||||
LIBC_X \
|
||||
THIRD_PARTY_COMPILER_RT \
|
||||
THIRD_PARTY_MUSL \
|
||||
|
|
2
third_party/make/makeint.inc
vendored
2
third_party/make/makeint.inc
vendored
|
@ -50,7 +50,7 @@ this program. If not, see <http://www.gnu.org/licenses/>. */
|
|||
#include "libc/sysv/consts/w.h"
|
||||
#include "libc/time/struct/tm.h"
|
||||
#include "libc/time/time.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "libc/x/x.h"
|
||||
#include "third_party/gdtoa/gdtoa.h"
|
||||
#include "third_party/musl/glob.h"
|
||||
|
|
3
third_party/maxmind/maxmind.mk
vendored
3
third_party/maxmind/maxmind.mk
vendored
|
@ -27,8 +27,7 @@ THIRD_PARTY_MAXMIND_A_DIRECTDEPS = \
|
|||
LIBC_STDIO \
|
||||
LIBC_STR \
|
||||
LIBC_STUBS \
|
||||
LIBC_SYSV \
|
||||
LIBC_UNICODE
|
||||
LIBC_SYSV
|
||||
|
||||
THIRD_PARTY_MAXMIND_A_DEPS := \
|
||||
$(call uniq,$(foreach x,$(THIRD_PARTY_MAXMIND_A_DIRECTDEPS),$($(x))))
|
||||
|
|
1
third_party/mbedtls/mbedtls.mk
vendored
1
third_party/mbedtls/mbedtls.mk
vendored
|
@ -29,7 +29,6 @@ THIRD_PARTY_MBEDTLS_A_DIRECTDEPS = \
|
|||
LIBC_STR \
|
||||
LIBC_SYSV \
|
||||
LIBC_TIME \
|
||||
LIBC_UNICODE \
|
||||
NET_HTTP \
|
||||
THIRD_PARTY_COMPILER_RT \
|
||||
THIRD_PARTY_GDTOA \
|
||||
|
|
1
third_party/mbedtls/test/test.mk
vendored
1
third_party/mbedtls/test/test.mk
vendored
|
@ -107,7 +107,6 @@ THIRD_PARTY_MBEDTLS_TEST_DIRECTDEPS = \
|
|||
LIBC_SYSV \
|
||||
LIBC_TIME \
|
||||
LIBC_TESTLIB \
|
||||
LIBC_UNICODE \
|
||||
LIBC_X \
|
||||
LIBC_ZIPOS \
|
||||
THIRD_PARTY_COMPILER_RT \
|
||||
|
|
|
@ -29,8 +29,8 @@
|
|||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#include "libc/errno.h"
|
||||
#include "libc/fmt/fmt.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/unicode/unicode.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "libc/str/unicode.h"
|
||||
#include "third_party/python/Modules/_decimal/libmpdec/bits.h"
|
||||
#include "third_party/python/Modules/_decimal/libmpdec/constants.h"
|
||||
#include "third_party/python/Modules/_decimal/libmpdec/io.h"
|
||||
|
|
6
third_party/python/Modules/_localemodule.c
vendored
6
third_party/python/Modules/_localemodule.c
vendored
|
@ -5,9 +5,9 @@
|
|||
│ https://docs.python.org/3/license.html │
|
||||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#define PY_SSIZE_T_CLEAN
|
||||
#include "libc/unicode/langinfo.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/unicode/unicode.h"
|
||||
#include "libc/str/langinfo.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "libc/str/unicode.h"
|
||||
#include "third_party/python/Include/dictobject.h"
|
||||
#include "third_party/python/Include/fileutils.h"
|
||||
#include "third_party/python/Include/import.h"
|
||||
|
|
2
third_party/python/Modules/main.c
vendored
2
third_party/python/Modules/main.c
vendored
|
@ -9,7 +9,7 @@
|
|||
#include "libc/errno.h"
|
||||
#include "libc/stdio/stdio.h"
|
||||
#include "libc/sysv/consts/s.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "third_party/python/Include/abstract.h"
|
||||
#include "third_party/python/Include/bytesobject.h"
|
||||
#include "third_party/python/Include/ceval.h"
|
||||
|
|
4
third_party/python/Python/fileutils.c
vendored
4
third_party/python/Python/fileutils.c
vendored
|
@ -14,8 +14,8 @@
|
|||
#include "libc/sysv/consts/fd.h"
|
||||
#include "libc/sysv/consts/fio.h"
|
||||
#include "libc/sysv/consts/o.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/unicode/unicode.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "libc/str/unicode.h"
|
||||
#include "third_party/python/Include/bytesobject.h"
|
||||
#include "third_party/python/Include/ceval.h"
|
||||
#include "third_party/python/Include/fileutils.h"
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
│ https://docs.python.org/3/license.html │
|
||||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#include "libc/math.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "third_party/python/Include/abstract.h"
|
||||
#include "third_party/python/Include/complexobject.h"
|
||||
#include "third_party/python/Include/fileutils.h"
|
||||
|
|
2
third_party/python/Python/frozenmain.c
vendored
2
third_party/python/Python/frozenmain.c
vendored
|
@ -6,7 +6,7 @@
|
|||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#include "libc/calls/calls.h"
|
||||
#include "libc/stdio/stdio.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "third_party/python/Include/fileutils.h"
|
||||
#include "third_party/python/Include/import.h"
|
||||
#include "third_party/python/Include/pydebug.h"
|
||||
|
|
2
third_party/python/Python/initimport.c
vendored
2
third_party/python/Python/initimport.c
vendored
|
@ -5,7 +5,7 @@
|
|||
│ https://docs.python.org/3/license.html │
|
||||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#include "libc/calls/internal.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "third_party/python/Include/abstract.h"
|
||||
#include "third_party/python/Include/boolobject.h"
|
||||
#include "third_party/python/Include/codecs.h"
|
||||
|
|
2
third_party/python/Python/initstdio.c
vendored
2
third_party/python/Python/initstdio.c
vendored
|
@ -5,7 +5,7 @@
|
|||
│ https://docs.python.org/3/license.html │
|
||||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#include "libc/calls/internal.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "third_party/python/Include/abstract.h"
|
||||
#include "third_party/python/Include/boolobject.h"
|
||||
#include "third_party/python/Include/codecs.h"
|
||||
|
|
2
third_party/python/Python/pylifecycle.c
vendored
2
third_party/python/Python/pylifecycle.c
vendored
|
@ -14,7 +14,7 @@
|
|||
#include "libc/runtime/runtime.h"
|
||||
#include "libc/stdio/stdio.h"
|
||||
#include "libc/sysv/consts/sig.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "third_party/python/Include/Python-ast.h"
|
||||
#include "third_party/python/Include/abstract.h"
|
||||
#include "third_party/python/Include/ast.h"
|
||||
|
|
2
third_party/python/Python/pystrtod.c
vendored
2
third_party/python/Python/pystrtod.c
vendored
|
@ -7,7 +7,7 @@
|
|||
#include "libc/assert.h"
|
||||
#include "libc/errno.h"
|
||||
#include "libc/fmt/fmt.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "third_party/python/Include/dtoa.h"
|
||||
#include "third_party/python/Include/object.h"
|
||||
#include "third_party/python/Include/pyctype.h"
|
||||
|
|
2
third_party/python/Python/pythonrun.c
vendored
2
third_party/python/Python/pythonrun.c
vendored
|
@ -5,7 +5,7 @@
|
|||
│ https://docs.python.org/3/license.html │
|
||||
╚─────────────────────────────────────────────────────────────────────────────*/
|
||||
#include "libc/stdio/stdio.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "third_party/python/Include/Python-ast.h"
|
||||
#include "third_party/python/Include/abstract.h"
|
||||
#include "third_party/python/Include/ast.h"
|
||||
|
|
2
third_party/python/Python/sysmodule.c
vendored
2
third_party/python/Python/sysmodule.c
vendored
|
@ -14,7 +14,7 @@
|
|||
#include "libc/stdio/stdio.h"
|
||||
#include "libc/sysv/consts/exit.h"
|
||||
#include "libc/sysv/consts/s.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "libc/x/x.h"
|
||||
#include "third_party/python/Include/abstract.h"
|
||||
#include "third_party/python/Include/boolobject.h"
|
||||
|
|
7
third_party/python/python.mk
vendored
7
third_party/python/python.mk
vendored
|
@ -456,7 +456,6 @@ THIRD_PARTY_PYTHON_STAGE1_A_DIRECTDEPS = \
|
|||
LIBC_SYSV_CALLS \
|
||||
LIBC_TIME \
|
||||
LIBC_TINYMATH \
|
||||
LIBC_UNICODE \
|
||||
LIBC_X \
|
||||
TOOL_BUILD_LIB \
|
||||
THIRD_PARTY_DLMALLOC \
|
||||
|
@ -1136,7 +1135,6 @@ THIRD_PARTY_PYTHON_STAGE2_A_DIRECTDEPS = \
|
|||
LIBC_SYSV_CALLS \
|
||||
LIBC_TIME \
|
||||
LIBC_TINYMATH \
|
||||
LIBC_UNICODE \
|
||||
LIBC_X \
|
||||
LIBC_ZIPOS \
|
||||
NET_HTTPS \
|
||||
|
@ -2056,7 +2054,6 @@ THIRD_PARTY_PYTHON_PYTEST_PYMAINS_DIRECTDEPS = \
|
|||
LIBC_INTRIN \
|
||||
LIBC_X \
|
||||
LIBC_STR \
|
||||
LIBC_UNICODE \
|
||||
LIBC_STDIO \
|
||||
LIBC_CALLS \
|
||||
LIBC_RUNTIME \
|
||||
|
@ -4288,7 +4285,6 @@ THIRD_PARTY_PYTHON_PYTHON_DIRECTDEPS = \
|
|||
LIBC_STUBS \
|
||||
LIBC_LOG \
|
||||
LIBC_SYSV \
|
||||
LIBC_UNICODE \
|
||||
LIBC_X \
|
||||
LIBC_ZIPOS \
|
||||
THIRD_PARTY_GETOPT \
|
||||
|
@ -4330,7 +4326,6 @@ THIRD_PARTY_PYTHON_FREEZE_DIRECTDEPS = \
|
|||
LIBC_STR \
|
||||
LIBC_STUBS \
|
||||
LIBC_SYSV \
|
||||
LIBC_UNICODE \
|
||||
LIBC_X \
|
||||
THIRD_PARTY_GETOPT \
|
||||
THIRD_PARTY_XED \
|
||||
|
@ -4370,7 +4365,7 @@ o/$(MODE)/third_party/python/chibicc.inc: \
|
|||
libc/runtime/symbolic.h \
|
||||
libc/stdio/stdio.h \
|
||||
libc/str/str.h \
|
||||
libc/unicode/unicode.h \
|
||||
libc/str/unicode.h \
|
||||
third_party/python/Include/Python.h \
|
||||
third_party/python/Include/abstract.h \
|
||||
third_party/python/Include/bltinmodule.h \
|
||||
|
|
2
third_party/python/runpythonmodule.c
vendored
2
third_party/python/runpythonmodule.c
vendored
|
@ -29,7 +29,7 @@
|
|||
#include "libc/sysv/consts/prot.h"
|
||||
#include "libc/sysv/consts/sig.h"
|
||||
#include "libc/time/time.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "libc/x/x.h"
|
||||
#include "third_party/linenoise/linenoise.h"
|
||||
#include "third_party/python/Include/abstract.h"
|
||||
|
|
1
third_party/quickjs/quickjs.mk
vendored
1
third_party/quickjs/quickjs.mk
vendored
|
@ -85,7 +85,6 @@ THIRD_PARTY_QUICKJS_A_DIRECTDEPS = \
|
|||
LIBC_SYSV_CALLS \
|
||||
LIBC_TIME \
|
||||
LIBC_TINYMATH \
|
||||
LIBC_UNICODE \
|
||||
LIBC_X \
|
||||
THIRD_PARTY_COMPILER_RT \
|
||||
THIRD_PARTY_GDTOA \
|
||||
|
|
1
third_party/regex/regex.mk
vendored
1
third_party/regex/regex.mk
vendored
|
@ -21,7 +21,6 @@ THIRD_PARTY_REGEX_A_DIRECTDEPS = \
|
|||
LIBC_NEXGEN32E \
|
||||
LIBC_RUNTIME \
|
||||
LIBC_STR \
|
||||
LIBC_UNICODE \
|
||||
LIBC_STUBS
|
||||
|
||||
THIRD_PARTY_REGEX_A_DEPS := \
|
||||
|
|
1
third_party/smallz4/smallz4.mk
vendored
1
third_party/smallz4/smallz4.mk
vendored
|
@ -34,7 +34,6 @@ THIRD_PARTY_SMALLZ4_A_DIRECTDEPS = \
|
|||
LIBC_NEXGEN32E \
|
||||
LIBC_RUNTIME \
|
||||
LIBC_CALLS \
|
||||
LIBC_UNICODE \
|
||||
LIBC_STDIO \
|
||||
LIBC_STR \
|
||||
LIBC_STUBS \
|
||||
|
|
2
third_party/sqlite3/fts3_icu.c
vendored
2
third_party/sqlite3/fts3_icu.c
vendored
|
@ -18,7 +18,7 @@
|
|||
|
||||
#include "libc/assert.h"
|
||||
#include "libc/str/str.h"
|
||||
#include "libc/unicode/unicode.h"
|
||||
#include "libc/str/unicode.h"
|
||||
#include "third_party/sqlite3/fts3_tokenizer.inc"
|
||||
|
||||
typedef struct IcuTokenizer IcuTokenizer;
|
||||
|
|
2
third_party/sqlite3/icu.c
vendored
2
third_party/sqlite3/icu.c
vendored
|
@ -34,7 +34,7 @@
|
|||
|
||||
/* Include ICU headers */
|
||||
#include "libc/assert.h"
|
||||
#include "libc/unicode/unicode.h"
|
||||
#include "libc/str/unicode.h"
|
||||
|
||||
#ifndef SQLITE_CORE
|
||||
#include "third_party/sqlite3/sqlite3ext.h"
|
||||
|
|
1
third_party/sqlite3/sqlite3.mk
vendored
1
third_party/sqlite3/sqlite3.mk
vendored
|
@ -56,7 +56,6 @@ THIRD_PARTY_SQLITE3_A_DIRECTDEPS = \
|
|||
LIBC_SYSV_CALLS \
|
||||
LIBC_TIME \
|
||||
LIBC_TINYMATH \
|
||||
LIBC_UNICODE \
|
||||
THIRD_PARTY_GDTOA \
|
||||
THIRD_PARTY_LINENOISE \
|
||||
THIRD_PARTY_MUSL \
|
||||
|
|
1
third_party/tidy/tidy.mk
vendored
1
third_party/tidy/tidy.mk
vendored
|
@ -24,7 +24,6 @@ THIRD_PARTY_TIDY_A_DIRECTDEPS = \
|
|||
LIBC_NEXGEN32E \
|
||||
LIBC_RUNTIME \
|
||||
LIBC_CALLS \
|
||||
LIBC_UNICODE \
|
||||
LIBC_STDIO \
|
||||
LIBC_SYSV \
|
||||
LIBC_STR \
|
||||
|
|
1
third_party/unzip/unzip.mk
vendored
1
third_party/unzip/unzip.mk
vendored
|
@ -25,7 +25,6 @@ THIRD_PARTY_UNZIP_A_DIRECTDEPS = \
|
|||
LIBC_STUBS \
|
||||
LIBC_SYSV \
|
||||
LIBC_TIME \
|
||||
LIBC_UNICODE \
|
||||
LIBC_ZIPOS \
|
||||
THIRD_PARTY_BZIP2
|
||||
|
||||
|
|
2
third_party/unzip/unzpriv.h
vendored
2
third_party/unzip/unzpriv.h
vendored
|
@ -26,7 +26,7 @@
|
|||
#include "libc/sysv/consts/s.h"
|
||||
#include "libc/calls/calls.h"
|
||||
#include "libc/str/str.h"
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
#include "libc/errno.h"
|
||||
#include "third_party/unzip/unzpriv.h"
|
||||
#include "libc/calls/calls.h"
|
||||
|
|
2
third_party/zip/tailor.h
vendored
2
third_party/zip/tailor.h
vendored
|
@ -259,7 +259,7 @@ IZ_IMP char *mktemp();
|
|||
*/
|
||||
#ifdef UNICODE_SUPPORT
|
||||
# if defined( UNIX) || defined( VMS)
|
||||
#include "libc/unicode/locale.h"
|
||||
#include "libc/str/locale.h"
|
||||
# endif /* defined( UNIX) || defined( VMS) */
|
||||
#include "libc/str/str.h"
|
||||
#endif /* def UNICODE_SUPPORT */
|
||||
|
|
1
third_party/zip/zip.mk
vendored
1
third_party/zip/zip.mk
vendored
|
@ -91,7 +91,6 @@ THIRD_PARTY_ZIP_DIRECTDEPS = \
|
|||
LIBC_STUBS \
|
||||
LIBC_SYSV \
|
||||
LIBC_TIME \
|
||||
LIBC_UNICODE \
|
||||
LIBC_X \
|
||||
THIRD_PARTY_BZIP2
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue