mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-18 23:20:36 +02:00
scons: Fix sunos5 build.
This commit is contained in:
parent
641c9adb09
commit
b172aebfdf
2 changed files with 6 additions and 0 deletions
|
|
@ -11,6 +11,9 @@ env = env.Clone()
|
|||
env.Prepend(LIBPATH = [graw.dir])
|
||||
env.Prepend(LIBS = ['graw'] + gallium)
|
||||
|
||||
if platform == 'sunos5':
|
||||
env.Append(LIBS = ['m'])
|
||||
|
||||
progs = [
|
||||
'clear',
|
||||
'tri',
|
||||
|
|
|
|||
|
|
@ -4,6 +4,9 @@ env = env.Clone()
|
|||
|
||||
env.Prepend(LIBS = [gallium])
|
||||
|
||||
if platform == 'sunos5':
|
||||
env.Append(LIBS = ['m'])
|
||||
|
||||
progs = [
|
||||
'pipe_barrier_test',
|
||||
'u_cache_test',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue