Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

epics-base7: 7.0.8 -> 7.0.8.1 #109

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ in
# EPICS base

epics-base7 = callPackage ./epnix/epics-base {
version = "7.0.8";
hash = "sha256-GEkUwlOkRhQ6LskxHV+eDvBe9UUzF2YWWmgiyuiHypM=";
version = "7.0.8.1";
hash = "sha256-JDSMBwBLZj9aaxJHGg0QmZ1zYTSY8J7+ZGihAwEuz3w=";
};
epics-base3 = callPackage ./epnix/epics-base {
version = "3.15.9";
Expand Down
8 changes: 6 additions & 2 deletions pkgs/epnix/epics-base/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,14 @@ in
# TODO: Some tests fail
doCheck = false;

# _FORTIFY_SOURCE=3 causes a buffer overflow in some cases:
# _FORTIFY_SOURCE=3 detects a false-positive buffer overflow in some cases:
# *** buffer overflow detected ***: terminated
#
# Fall back to _FORTIFY_SOURCE=2
# EPICS automatically falls back to _FORTIFY_SOURCE=2 since 7.0.8.1, but this doesn't work in
# the nix build.
# Being tracked in https://github.com/epics-base/epics-base/issues/514, hopefully with a fix
# in EPICS 7.0.9

hardeningDisable = ["fortify3"];

meta = {
Expand Down