From 504090d18863480ef00c2d0e4807e34bd6103294 Mon Sep 17 00:00:00 2001 From: midipix Date: Tue, 12 Mar 2019 16:39:45 -0400 Subject: midipix targets: crtbegin & crtend objs now provided by musl libc (via mmglue). --- gcc/config/i386/midipix.c | 4 +++- gcc/config/i386/midipix_crtbegin.c | 22 ---------------------- gcc/config/i386/midipix_crtend.c | 23 ----------------------- gcc/config/i386/t-midipix | 15 --------------- 4 files changed, 3 insertions(+), 61 deletions(-) delete mode 100644 gcc/config/i386/midipix_crtbegin.c delete mode 100644 gcc/config/i386/midipix_crtend.c (limited to 'gcc') diff --git a/gcc/config/i386/midipix.c b/gcc/config/i386/midipix.c index a8a1b615f..8b920a8e7 100644 --- a/gcc/config/i386/midipix.c +++ b/gcc/config/i386/midipix.c @@ -354,8 +354,10 @@ void midipix_seh_hook__pe_seh_unwind_emit(FILE * f, rtx r) void midipix_seh_hook__pe_seh_emit_except_personality(rtx personality) { + /* .__lang_personality_seh0 thunk */ fputs("\t.seh_handler\t",asm_out_file); - output_addr_const (asm_out_file, personality); + fputs(".",asm_out_file); + output_addr_const(asm_out_file,personality); fputs(", @unwind, @except\n",asm_out_file); } diff --git a/gcc/config/i386/midipix_crtbegin.c b/gcc/config/i386/midipix_crtbegin.c deleted file mode 100644 index 46c7d0204..000000000 --- a/gcc/config/i386/midipix_crtbegin.c +++ /dev/null @@ -1,22 +0,0 @@ -/*****************************************************************************/ -/* */ -/* midipix_crtbegin.c: a standard start file for the midipix targets */ -/* */ -/* Copyright (C) 2014,2015 Z. Gilboa */ -/* */ -/* This program is free software: you can redistribute it and/or modify */ -/* it under the terms of the GNU General Public License as published by */ -/* the Free Software Foundation, either version 3 of the License, or */ -/* (at your option) any later version. */ -/* */ -/* This program is distributed in the hope that it will be useful, */ -/* but WITHOUT ANY WARRANTY; without even the implied warranty of */ -/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */ -/* GNU General Public License for more details. */ -/* */ -/* You should have received a copy of the GNU General Public License */ -/* along with this program. If not, see . */ -/* */ -/*****************************************************************************/ - -int __dso_handle = 0; diff --git a/gcc/config/i386/midipix_crtend.c b/gcc/config/i386/midipix_crtend.c deleted file mode 100644 index 3f15e8827..000000000 --- a/gcc/config/i386/midipix_crtend.c +++ /dev/null @@ -1,23 +0,0 @@ -/*****************************************************************************/ -/* */ -/* midipix_crtend.c: a standard end file for the midipix targets */ -/* */ -/* Copyright (C) 2014,2015 Z. Gilboa */ -/* */ -/* This program is free software: you can redistribute it and/or modify */ -/* it under the terms of the GNU General Public License as published by */ -/* the Free Software Foundation, either version 3 of the License, or */ -/* (at your option) any later version. */ -/* */ -/* This program is distributed in the hope that it will be useful, */ -/* but WITHOUT ANY WARRANTY; without even the implied warranty of */ -/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */ -/* GNU General Public License for more details. */ -/* */ -/* You should have received a copy of the GNU General Public License */ -/* along with this program. If not, see . */ -/* */ -/*****************************************************************************/ - -/* required functionality provided by libc and the system call layer */ -typedef int dummy; diff --git a/gcc/config/i386/t-midipix b/gcc/config/i386/t-midipix index 56e29c484..b73e9b34f 100644 --- a/gcc/config/i386/t-midipix +++ b/gcc/config/i386/t-midipix @@ -86,18 +86,3 @@ SHLIB_INSTALL = \ $(INSTALL_DATA) \ $(SHLIB_DIR)/$(SHLIB_IMPLIB) \ $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_IMPLIB); \ - $(INSTALL_DATA) \ - $(SHLIB_DIR)/crtbegin.o \ - $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL)/crtbegin.o; \ - $(INSTALL_DATA) \ - $(SHLIB_DIR)/crtbeginS.o \ - $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL)/crtbeginS.o; \ - $(INSTALL_DATA) \ - $(SHLIB_DIR)/crtbeginT.o \ - $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL)/crtbeginT.o; \ - $(INSTALL_DATA) \ - $(SHLIB_DIR)/crtend.o \ - $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL)/crtend.o; \ - $(INSTALL_DATA) \ - $(SHLIB_DIR)/crtendS.o \ - $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL)/crtendS.o; -- cgit v1.2.3