فهرست منبع

gen_odin.py: add pthread to linux system libraries

Andre Weissflog 3 سال پیش
والد
کامیت
a3d56c615d
1فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  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"'
             'gl': '"system:Cocoa.framework","system:QuartzCore.framework","system:OpenGL.framework"'
         },
         },
         'linux': {
         'linux': {
-            'gl': '"system:GL"'
+            'gl': '"system:GL", "system:dl", "system:pthread"'
         }
         }
     },
     },
     'sapp_': {
     'sapp_': {
@@ -45,7 +45,7 @@ system_libs = {
             'gl': '"system:Cocoa.framework","system:QuartzCore.framework","system:OpenGL.framework"',
             'gl': '"system:Cocoa.framework","system:QuartzCore.framework","system:OpenGL.framework"',
         },
         },
         'linux': {
         'linux': {
-            'gl': '"system:X11", "system:Xi", "system:Xcursor", "system:GL", "system:dl"'
+            'gl': '"system:X11", "system:Xi", "system:Xcursor", "system:GL", "system:dl", "system:pthread"'
         }
         }
     },
     },
     'saudio_': {
     'saudio_': {
@@ -58,7 +58,7 @@ system_libs = {
             'gl': '"system:AudioToolbox.framework"',
             'gl': '"system:AudioToolbox.framework"',
         },
         },
         'linux': {
         'linux': {
-            'gl': '"system:asound"',
+            'gl': '"system:asound", "system:dl", "system:pthread"',
         }
         }
     }
     }
 }
 }