Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Emulator: queryCoreProfileSupport: swap interval not found

I get an error message when running avd.

Emulator: queryCoreProfileSupport: swap interval not found

like image 448
Clip Art Avatar asked May 30 '19 19:05

Clip Art


2 Answers

Change the gpu mode in AVD configuration to software

hw.gpu.mode = software

Default is hw.gpu.mode = auto

See the highlighted line in the picture

like image 73
ganxiyun Avatar answered Nov 10 '22 12:11

ganxiyun


Had the same issue on Ubuntu 18.04 with AMD GPU driver 19.50 after upgrading to kernel 5.3.0-28-generic. Full error for me was:

Emulator: queryCoreProfileSupport: swap interval not found
Emulator: : CommandLine Error: Option 'help-list' registered more than once!
LLVM ERROR: inconsistency in registered CommandLine options

Not a proper solution, but a workaround would be uninstalling the amdgpu[-pro] driver:

$/usr/bin/amdgpu-uninstall
like image 38
Green-Man Avatar answered Nov 10 '22 14:11

Green-Man