Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
mesa
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1,906
Issues
1,906
List
Boards
Labels
Milestones
Merge Requests
317
Merge Requests
317
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mesa
mesa
Commits
c0d3fb4b
Commit
c0d3fb4b
authored
Mar 08, 2011
by
Vinson Lee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
scons: Fix immediate Python exceptions with SCons on SunOS.
The build still fails.
parent
67f61199
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
common.py
common.py
+1
-1
src/gallium/tests/graw/SConscript
src/gallium/tests/graw/SConscript
+1
-1
src/gallium/tests/unit/SConscript
src/gallium/tests/unit/SConscript
+1
-1
src/gallium/winsys/sw/dri/SConscript
src/gallium/winsys/sw/dri/SConscript
+1
-1
src/gallium/winsys/sw/xlib/SConscript
src/gallium/winsys/sw/xlib/SConscript
+1
-1
No files found.
common.py
View file @
c0d3fb4b
...
...
@@ -83,7 +83,7 @@ def AddOptions(opts):
opts
.
Add
(
EnumOption
(
'machine'
,
'use machine-specific assembly code'
,
default_machine
,
allowed_values
=
(
'generic'
,
'ppc'
,
'x86'
,
'x86_64'
)))
opts
.
Add
(
EnumOption
(
'platform'
,
'target platform'
,
host_platform
,
allowed_values
=
(
'linux'
,
'cell'
,
'windows'
,
'winddk'
,
'wince'
,
'darwin'
,
'embedded'
,
'cygwin'
,
'sunos
5
'
,
'freebsd8'
)))
allowed_values
=
(
'linux'
,
'cell'
,
'windows'
,
'winddk'
,
'wince'
,
'darwin'
,
'embedded'
,
'cygwin'
,
'sunos'
,
'freebsd8'
)))
opts
.
Add
(
'toolchain'
,
'compiler toolchain'
,
default_toolchain
)
opts
.
Add
(
BoolOption
(
'gles'
,
'EXPERIMENTAL: enable OpenGL ES support'
,
'no'
))
opts
.
Add
(
BoolOption
(
'llvm'
,
'use LLVM'
,
default_llvm
))
...
...
src/gallium/tests/graw/SConscript
View file @
c0d3fb4b
...
...
@@ -8,7 +8,7 @@ env.Prepend(LIBPATH = [graw.dir])
env
.
Prepend
(
LIBS
=
[
'graw'
])
if
env
[
'platform'
]
in
(
'freebsd8'
,
'sunos
5
'
):
if
env
[
'platform'
]
in
(
'freebsd8'
,
'sunos'
):
env
.
Append
(
LIBS
=
[
'm'
])
if
env
[
'platform'
]
==
'freebsd8'
:
...
...
src/gallium/tests/unit/SConscript
View file @
c0d3fb4b
...
...
@@ -4,7 +4,7 @@ env = env.Clone()
env
.
Prepend
(
LIBS
=
[
gallium
])
if
env
[
'platform'
]
in
(
'freebsd8'
,
'sunos
5
'
):
if
env
[
'platform'
]
in
(
'freebsd8'
,
'sunos'
):
env
.
Append
(
LIBS
=
[
'm'
])
if
env
[
'platform'
]
==
'freebsd8'
:
...
...
src/gallium/winsys/sw/dri/SConscript
View file @
c0d3fb4b
...
...
@@ -4,7 +4,7 @@
Import
(
'*'
)
if
env
[
'platform'
]
==
'linux'
:
if
env
[
'platform'
]
in
(
'linux'
,
'sunos'
)
:
env
=
env
.
Clone
()
...
...
src/gallium/winsys/sw/xlib/SConscript
View file @
c0d3fb4b
...
...
@@ -4,7 +4,7 @@
Import
(
'*'
)
if
env
[
'platform'
]
in
(
'cygwin'
,
'linux'
):
if
env
[
'platform'
]
in
(
'cygwin'
,
'linux'
,
'sunos'
):
env
=
env
.
Clone
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment