Kaynağa Gözat

gen_odin.py: fix linux system library linking

Andre Weissflog 3 yıl önce
ebeveyn
işleme
69d67f52d1
1 değiştirilmiş dosya ile 3 ekleme ve 3 silme
  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"',
         }
     }
 }