mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-01 09:40:08 +01:00
scons: Build roundevent_test.
Reviewed-by: Roland Scheidegger <sroland@vmware.co>
This commit is contained in:
parent
21ccdbdb5d
commit
497a22a727
2 changed files with 9 additions and 0 deletions
|
|
@ -54,3 +54,10 @@ u_atomic_test = env.Program(
|
|||
)
|
||||
alias = env.Alias("u_atomic_test", u_atomic_test, u_atomic_test[0].abspath)
|
||||
AlwaysBuild(alias)
|
||||
|
||||
roundeven_test = env.Program(
|
||||
target = 'roundeven_test',
|
||||
source = ['roundeven_test.c'],
|
||||
)
|
||||
alias = env.Alias("roundeven_test", roundeven_test, roundeven_test[0].abspath)
|
||||
AlwaysBuild(alias)
|
||||
|
|
|
|||
|
|
@ -24,6 +24,8 @@
|
|||
#ifndef _ROUNDING_H
|
||||
#define _ROUNDING_H
|
||||
|
||||
#include "c99_compat.h" // inline
|
||||
|
||||
#include <math.h>
|
||||
#include <limits.h>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue