This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/configure b/configure | |
index 800b5850f4..a93f5426ef 100755 | |
--- a/configure | |
+++ b/configure | |
@@ -836,6 +836,8 @@ for opt do | |
;; | |
--enable-linux-user) linux_user="yes" | |
;; | |
+ --enable-linux-user-drm-amdgpu) meson_option_add "-Ddrm_amdgpu=true" | |
+ ;; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
addEventListener('fetch', event => { | |
event.respondWith(handleRequest(event.request)) | |
}) | |
/** | |
* Respond with hello worker text | |
* @param {Request} request | |
*/ | |
async function handleRequest(request) { | |
const url = new URL(request.url) | |
const path = url.pathname |