mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Rename libmaxsi to sortix libc.
This commit is contained in:
parent
6b663d04d2
commit
be4858f82c
266 changed files with 22 additions and 21 deletions
.gitignoreMakefileREADME
libc
.gitignoreMakefileSIG_DFL.cppSIG_ERR.cppSIG_IGN.cpp_Exit.cpp_assert.cpp_exit.cppabort.cppabs.cppaccess.cppatoi.cppatol.cppatoll.cppbsearch.cppc++.cppcalloc.cppchdir.cppchmod.cppclearerr.cppclock.cppclose.cppctime.cppctype.c
decl
DIR.hFILE.hNULL.hWCHAR_MAX.hWCHAR_MIN.hWEOF.hblkcnt_t.hblksize_t.hclock_t.hdev_t.herrno_decl.herrno_values.hgid_t.hid_t.hino_t.hintn_t.hintptr_t.hlocale_t.hmode_t.hnlink_t.hoff_t.hpid_t.hptrdiff_t.hsize_t.hssize_t.hsuseconds_t.htime_t.huid_t.huseconds_t.hva_list.hwchar_t.hwctrans_t.hwctype_t.hwint_t.h
dir.cdlfcn.cppdup.cppenv.cpperrno.cpperrorprint.cppexecl.cppexecle.cppexeclp.cppexecv.cppexecve.cppexecvp.cppexecvpe.cppexit.cppfabs.cppfbufsize.cppfchmod.cppfclose.cppfcloseall.cppfcntl.cppfddir-sortix.cfdio.cfdio.hfeof.cppferror.cppfflush.cppfgetc.cppfgets.cppfileno.cppflbf.cppflushlfb.cppfnewline.cppfork.cppformat.cppfpending.cppfpipe.cppfpurge.cppfputc.cppfputs.cpp
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,5 +4,6 @@
|
||||||
/*.iso
|
/*.iso
|
||||||
/*.so
|
/*.so
|
||||||
/*.a
|
/*.a
|
||||||
|
libmaxsi
|
||||||
builds
|
builds
|
||||||
sysroot
|
sysroot
|
||||||
|
|
6
Makefile
6
Makefile
|
@ -2,9 +2,9 @@ include compiler.mak
|
||||||
include version.mak
|
include version.mak
|
||||||
|
|
||||||
ifneq ($(BUILD_LIBC),0)
|
ifneq ($(BUILD_LIBC),0)
|
||||||
MODULES:=$(MODULES) libmaxsi
|
MODULES:=$(MODULES) libc
|
||||||
endif
|
endif
|
||||||
ALLMODULES:=$(ALLMODULES) libmaxsi
|
ALLMODULES:=$(ALLMODULES) libc
|
||||||
|
|
||||||
ifneq ($(BUILD_GAMES),0)
|
ifneq ($(BUILD_GAMES),0)
|
||||||
MODULES:=$(MODULES) games
|
MODULES:=$(MODULES) games
|
||||||
|
@ -66,7 +66,7 @@ suball: sysroot-base-headers
|
||||||
(for D in $(MODULES); do ($(MAKE) all $(MFLAGS) --directory $$D && $(MAKE) install $(MFLAGS) --directory $$D) || exit $$?; done)
|
(for D in $(MODULES); do ($(MAKE) all $(MFLAGS) --directory $$D && $(MAKE) install $(MFLAGS) --directory $$D) || exit $$?; done)
|
||||||
|
|
||||||
sysroot-base-headers: sysroot-fsh
|
sysroot-base-headers: sysroot-fsh
|
||||||
(for D in libmaxsi sortix; do ($(MAKE) install-headers $(MFLAGS) --directory $$D) || exit $$?; done)
|
(for D in libc sortix; do ($(MAKE) install-headers $(MFLAGS) --directory $$D) || exit $$?; done)
|
||||||
|
|
||||||
sysroot-fsh:
|
sysroot-fsh:
|
||||||
mkdir -p "$(SYSROOT)"
|
mkdir -p "$(SYSROOT)"
|
||||||
|
|
6
README
6
README
|
@ -203,6 +203,6 @@ kernel, the filesystem servers, the initrd tools, the utilities, the games, and
|
||||||
the benchmark programs are licensed under the GNU General Public License, either
|
the benchmark programs are licensed under the GNU General Public License, either
|
||||||
version 3 or (at your option) any later version.
|
version 3 or (at your option) any later version.
|
||||||
|
|
||||||
Unless the license header in the source code states otherwise, the libmaxsi
|
Unless the license header in the source code states otherwise, the libc library
|
||||||
standard library is licensed under the GNU Lesser General Public License, either
|
s licensed under the GNU Lesser General Public License, either version 3 or (at
|
||||||
version 3 or (at your option) any later version.
|
your option) any later version.
|
||||||
|
|
0
libmaxsi/.gitignore → libc/.gitignore
vendored
0
libmaxsi/.gitignore → libc/.gitignore
vendored
|
@ -23,7 +23,7 @@ ifeq ($(HOST),x86_64-sortix)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CPPINCLUDES=-I preproc
|
CPPINCLUDES=-I preproc
|
||||||
CPPFLAGS=-DLIBMAXSI_LIBRARY -U_GNU_SOURCE $(CPUDEFINES) $(CPPINCLUDES)
|
CPPFLAGS=-DLIBC_LIBRARY -U_GNU_SOURCE $(CPUDEFINES) $(CPPINCLUDES)
|
||||||
FLAGS=$(CPUFLAGS) -Wall -Wextra -fno-stack-protector $(FLAGSDEBUG)
|
FLAGS=$(CPUFLAGS) -Wall -Wextra -fno-stack-protector $(FLAGSDEBUG)
|
||||||
CFLAGS=$(FLAGS) -std=c99
|
CFLAGS=$(FLAGS) -std=c99
|
||||||
CXXFLAGS=$(FLAGS) -std=gnu++0x -fno-exceptions -fno-rtti
|
CXXFLAGS=$(FLAGS) -std=gnu++0x -fno-exceptions -fno-rtti
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue