]> git.ipfire.org Git - thirdparty/gcc.git/blame - libphobos/libdruntime/gcc/sections/package.d
Update copyright years.
[thirdparty/gcc.git] / libphobos / libdruntime / gcc / sections / package.d
CommitLineData
8b651828 1// Run-time support for retrieving platform-specific sections.
99dee823 2// Copyright (C) 2019-2021 Free Software Foundation, Inc.
8b651828
IB
3
4// GCC is free software; you can redistribute it and/or modify it under
5// the terms of the GNU General Public License as published by the Free
6// Software Foundation; either version 3, or (at your option) any later
7// version.
8
9// GCC is distributed in the hope that it will be useful, but WITHOUT ANY
10// WARRANTY; without even the implied warranty of MERCHANTABILITY or
11// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12// for more details.
13
14// Under Section 7 of GPL version 3, you are granted additional
15// permissions described in the GCC Runtime Library Exception, version
16// 3.1, as published by the Free Software Foundation.
17
18// You should have received a copy of the GNU General Public License and
19// a copy of the GCC Runtime Library Exception along with this program;
20// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
21// <http://www.gnu.org/licenses/>.
22
23module gcc.sections;
24
25version (CRuntime_Glibc)
26 public import gcc.sections.elf_shared;
27else version (CRuntime_Musl)
28 public import gcc.sections.elf_shared;
29else version (CRuntime_UClibc)
30 public import gcc.sections.elf_shared;
31else version (FreeBSD)
32 public import gcc.sections.elf_shared;
33else version (NetBSD)
34 public import gcc.sections.elf_shared;
35else version (DragonFlyBSD)
36 public import gcc.sections.elf_shared;
37else version (Solaris)
4d513120 38 public import gcc.sections.elf_shared;
8b651828
IB
39else version (OSX)
40 public import gcc.sections.osx;
41else version (CRuntime_DigitalMars)
42 public import gcc.sections.win32;
43else version (CRuntime_Microsoft)
44 public import gcc.sections.win64;
45else version (CRuntime_Bionic)
46 public import gcc.sections.android;
47else
48 static assert(0, "unimplemented");