forked from gcc-mirror/gcc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
libphobos: Merge upstream druntime d37ef985.
Adds support for FreeBSD/x86 53-bit precision reals, updates bindings for FreeBSD 12.x, and removes all support code and tests for the extern(Pascal) calling convention. Reviewed-on: dlang/druntime#3286 dlang/druntime#3287 libphobos/ChangeLog: * libdruntime/MERGE: Merge upstream druntime d37ef985. * libdruntime/Makefile.am (DRUNTIME_DSOURCES_FREEBSD): Add core/sys/freebsd/config.d * libdruntime/Makefile.in: Regenerate.
- Loading branch information
Showing
13 changed files
with
214 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
5e4492c45172110b035591f5961b9f9f5adf6f13 | ||
d37ef985a97eb446371ab4b2315a52b87233fbf3 | ||
|
||
The first line of this file holds the git revision number of the last | ||
merge done from the dlang/druntime repository. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* D header file for FreeBSD | ||
* | ||
* Authors: Iain Buclaw | ||
*/ | ||
module core.sys.freebsd.config; | ||
|
||
version (FreeBSD): | ||
|
||
public import core.sys.posix.config; | ||
|
||
// https://svnweb.freebsd.org/base/head/sys/sys/param.h?view=markup | ||
// __FreeBSD_version numbers are documented in the Porter's Handbook. | ||
// NOTE: When adding newer versions of FreeBSD, verify all current versioned | ||
// bindings are still compatible with the release. | ||
version (FreeBSD_12) enum __FreeBSD_version = 1202000; | ||
else version (FreeBSD_11) enum __FreeBSD_version = 1104000; | ||
else version (FreeBSD_10) enum __FreeBSD_version = 1004000; | ||
else version (FreeBSD_9) enum __FreeBSD_version = 903000; | ||
else version (FreeBSD_8) enum __FreeBSD_version = 804000; | ||
else static assert(false, "Unsupported version of FreeBSD"); | ||
|
||
// First version of FreeBSD to support 64-bit stat buffer. | ||
enum INO64_FIRST = 1200031; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.