diff options
| author | Andre Weissflog <floooh@gmail.com> | 2022-08-02 20:05:03 +0200 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2022-08-02 20:05:03 +0200 |
| commit | a3d56c615db196ba1fdfc17f4c23121315916e09 (patch) | |
| tree | 416335e576fede3c0655b160b0d66f51d4ec2ad2 /bindgen | |
| parent | b3145d5ab74906efcd12c7c1fd1e36faa8069951 (diff) | |
gen_odin.py: add pthread to linux system libraries
Diffstat (limited to 'bindgen')
| -rw-r--r-- | bindgen/gen_odin.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bindgen/gen_odin.py b/bindgen/gen_odin.py index f0258a3f..c49b284e 100644 --- a/bindgen/gen_odin.py +++ b/bindgen/gen_odin.py @@ -32,7 +32,7 @@ system_libs = { 'gl': '"system:Cocoa.framework","system:QuartzCore.framework","system:OpenGL.framework"' }, 'linux': { - 'gl': '"system:GL"' + 'gl': '"system:GL", "system:dl", "system:pthread"' } }, 'sapp_': { @@ -45,7 +45,7 @@ system_libs = { 'gl': '"system:Cocoa.framework","system:QuartzCore.framework","system:OpenGL.framework"', }, '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_': { @@ -58,7 +58,7 @@ system_libs = { 'gl': '"system:AudioToolbox.framework"', }, 'linux': { - 'gl': '"system:asound"', + 'gl': '"system:asound", "system:dl", "system:pthread"', } } } |