diff options
Diffstat (limited to 'mesalib/scons/gallium.py')
-rw-r--r-- | mesalib/scons/gallium.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mesalib/scons/gallium.py b/mesalib/scons/gallium.py index e9496a8d5..66ccaea73 100644 --- a/mesalib/scons/gallium.py +++ b/mesalib/scons/gallium.py @@ -500,6 +500,8 @@ def generate(env): libs = [] if env['platform'] in ('darwin', 'freebsd', 'linux', 'posix', 'sunos'): libs += ['m', 'pthread', 'dl'] + if env['platform'] in 'linux': + libs += ['rt'] env.Append(LIBS = libs) # OpenMP |