tests: turn of optimisation when compiling the tests, less unexpected optimisations.
This commit is contained in:
parent
590ff06418
commit
78ce6f86f7
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
# Makefile for the tests.
|
||||
|
||||
GCC= /usr/gnu/bin/gcc
|
||||
CFLAGS= -O -D_MINIX -D_POSIX_SOURCE
|
||||
CFLAGS= -O0 -D_MINIX -D_POSIX_SOURCE
|
||||
CFLAGS-GCC= $(CFLAGS) -Wall
|
||||
CFLAGS-GCCFPU= $(CFLAGS) -Wall -mhard-float
|
||||
CFLAGS-GCCFPU= $(CFLAGS-GCC) -W -mhard-float
|
||||
|
|
Loading…
Reference in a new issue