tests: turn of optimisation when compiling the tests, less unexpected optimisations.

This commit is contained in:
Ben Gras 2010-07-12 16:22:05 +00:00
parent 590ff06418
commit 78ce6f86f7

View file

@ -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