summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorOvchinnikovDmitrii <[email protected]>2019-06-14 20:39:32 +0300
committerBradley Sepos <[email protected]>2019-08-28 13:10:24 -0400
commit67bf399b8360c255ffc3130cc9857a7c803664c1 (patch)
tree1e5e3e7b32f0c13a572899309d2e99daaa834ec0 /make
parentd18951c264350f59edda84305fed9d0ecd4e1496 (diff)
VCE: Vulkan support on linux.
Diffstat (limited to 'make')
-rw-r--r--make/configure.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/make/configure.py b/make/configure.py
index cdcd425bc..7e4457fc2 100644
--- a/make/configure.py
+++ b/make/configure.py
@@ -1401,7 +1401,7 @@ def createCLI( cross = None ):
grp.add_argument( '--enable-qsv', dest="enable_qsv", default=IfHost(True, "*-*-mingw*", none=False).value, action='store_true', help=(( 'enable %s' %h ) if h != argparse.SUPPRESS else h) )
grp.add_argument( '--disable-qsv', dest="enable_qsv", action='store_false', help=(( 'disable %s' %h ) if h != argparse.SUPPRESS else h) )
- h = IfHost( 'AMD VCE video encoder', '*-*-mingw*', none=argparse.SUPPRESS).value
+ h = IfHost( 'AMD VCE video encoder', '*-*-linux*', '*-*-mingw*', none=argparse.SUPPRESS).value
grp.add_argument( '--enable-vce', dest="enable_vce", default=IfHost(True, '*-*-mingw*', none=False).value, action='store_true', help=(( 'enable %s' %h ) if h != argparse.SUPPRESS else h) )
grp.add_argument( '--disable-vce', dest="enable_vce", action='store_false', help=(( 'disable %s' %h ) if h != argparse.SUPPRESS else h) )
@@ -1668,7 +1668,7 @@ try:
options.enable_qsv = IfHost(options.enable_qsv, '*-*-linux*',
'*-*-mingw*', none=False).value
# Disable VCE on unsupported platforms
- options.enable_vce = IfHost(options.enable_vce, '*-*-mingw*',
+ options.enable_vce = IfHost(options.enable_vce, '*-*-linux*', '*-*-mingw*',
none=False).value