Skip to content
Open
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
3 changes: 2 additions & 1 deletion UnixBench/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ else

## gcc optimization flags
## (-ffast-math) disables strict IEEE or ISO rules/specifications for math funcs
OPTON = -O3 -ffast-math
## (-std=c89) specifies the C standard to avoid errors from new compilers
OPTON = -O3 -ffast-math -std=c89

## OS detection. Comment out if gmake syntax not supported by other 'make'.
OSNAME:=$(shell uname -s)
Expand Down