1 /* Functions for generic OpenBSD as target machine for GNU D compiler.
2 Copyright (C) 2021-2024 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
22 #include "coretypes.h"
25 #include "d/d-target.h"
26 #include "d/d-target-def.h"
28 /* Define TARGET_D_OS_VERSIONS for OpenBSD targets. */
31 openbsd_d_os_builtins (void)
33 d_add_builtin_version ("Posix");
34 d_add_builtin_version ("OpenBSD");
37 /* Handle a call to `__traits(getTargetInfo, "objectFormat")'. */
40 openbsd_d_handle_target_object_format (void)
42 const char *objfmt
= "elf";
44 return build_string_literal (strlen (objfmt
) + 1, objfmt
);
47 /* Implement TARGET_D_REGISTER_OS_TARGET_INFO for OpenBSD targets. */
50 openbsd_d_register_target_info (void)
52 const struct d_target_info_spec handlers
[] = {
53 { "objectFormat", openbsd_d_handle_target_object_format
},
57 d_add_target_info_handlers (handlers
);
60 #undef TARGET_D_OS_VERSIONS
61 #define TARGET_D_OS_VERSIONS openbsd_d_os_builtins
63 #undef TARGET_D_REGISTER_OS_TARGET_INFO
64 #define TARGET_D_REGISTER_OS_TARGET_INFO openbsd_d_register_target_info
66 struct gcc_targetdm targetdm
= TARGETDM_INITIALIZER
;