mirror of https://github.com/mono/CppSharp.git
Browse Source
Add linux premake binary for 32 and 64 bit Linuxes. premake5-linux script does a naive 32/64 bit test, and runs the appropriate binary. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@iki.fi>pull/293/head
3 changed files with 8 additions and 0 deletions
@ -0,0 +1,8 @@ |
|||||||
|
#!/bin/sh |
||||||
|
|
||||||
|
if [ $(uname -m) = "x86_64" ]; then |
||||||
|
./premake5-linux-64 $* |
||||||
|
else |
||||||
|
./premake5-linux-32 $* |
||||||
|
fi |
||||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue