mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Rename crt1.o to crt0.o and install compatibility crt1.o.
This prepares for an incompatible compiler toolchain change scheduled for Sortix 0.10 development where crt0.o is used instead of crt1.o.
This commit is contained in:
parent
550ba54a8f
commit
6b4dbe0358
3 changed files with 7 additions and 3 deletions
|
@ -622,6 +622,7 @@ $(FREEOBJS) \
|
|||
$(HOSTEDOBJS) \
|
||||
|
||||
CRTOBJ=\
|
||||
crt0.o \
|
||||
crt1.o \
|
||||
crti.o \
|
||||
crtn.o \
|
||||
|
@ -671,9 +672,12 @@ libk.a: $(LIBK_OBJS)
|
|||
librt.a:
|
||||
$(HOSTAR) rcs $@
|
||||
|
||||
crt1.o: $(CPUDIR)/crt1.o
|
||||
crt0.o: $(CPUDIR)/crt0.o
|
||||
ln -f $< $@
|
||||
|
||||
crt1.o: crt0.o
|
||||
cp $< $@
|
||||
|
||||
crti.o: $(CPUDIR)/crti.o
|
||||
ln -f $< $@
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
x64/crt1.S
|
||||
x64/crt0.S
|
||||
Implement the _start symbol at which execution begins which performs the
|
||||
task of initializing the standard library and executing the main function.
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
x86/crt1.S
|
||||
x86/crt0.S
|
||||
Implement the _start symbol at which execution begins which performs the
|
||||
task of initializing the standard library and executing the main function.
|
||||
|
Loading…
Add table
Reference in a new issue