Skip to content

Commit

Permalink
Merge pull request #2 from mathiasrw/fix/stack-smash
Browse files Browse the repository at this point in the history
Ignore stack smashing on allBalances (fix znort987#81)
  • Loading branch information
adminnu authored Jul 14, 2018
2 parents 8d26a50 + 06731bf commit 8e6841a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions make
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ my($comboModes, $shortComboModes, $justifiedComboModes) = genModes(\@modeNames,

# Base flags
# ===========
my($cc) = "gcc";
my($cplus) = "g++";
my($cc) = "gcc -fno-stack-protector -zexecstack -g";
my($cplus) = "g++ -fno-stack-protector -zexecstack -g";
my($nvcc) = "nvcc";
my($linker) = "g++ -fno-stack-protector";
my($linker) = "g++ -fno-stack-protector -zexecstack -g";
my($fortran) = "gfortran++";
my(@inc) = qw(
-I.
Expand Down

0 comments on commit 8e6841a

Please sign in to comment.