Explorar el Código

gen_odin.py: fix linux system library linking

Andre Weissflog hace 3 años
padre
commit
69d67f52d1
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      bindgen/gen_odin.py

+ 3 - 3
bindgen/gen_odin.py

@@ -32,7 +32,7 @@ system_libs = {
             'gl': '"system:Cocoa.framework","system:QuartzCore.framework","system:OpenGL.framework"'
         },
         'linux': {
-            'gl': ''
+            'gl': '"system:GL"'
         }
     },
     'sapp_': {
@@ -45,7 +45,7 @@ system_libs = {
             'gl': '"system:Cocoa.framework","system:QuartzCore.framework","system:OpenGL.framework"',
         },
         'linux': {
-            'gl': '',
+            'gl': '"system:X11", "system:Xi", "system:Xcursor", "system:GL"'
         }
     },
     'saudio_': {
@@ -58,7 +58,7 @@ system_libs = {
             'gl': '"system:AudioToolbox.framework"',
         },
         'linux': {
-            'gl': '',
+            'gl': '"system:asound"',
         }
     }
 }