Browse Source

build: add linux premake5 binary

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
Tomi Valkeinen 11 years ago
parent
commit
6b75e98933
  1. 8
      build/premake5-linux
  2. BIN
      build/premake5-linux-32
  3. BIN
      build/premake5-linux-64

8
build/premake5-linux

@ -0,0 +1,8 @@ @@ -0,0 +1,8 @@
#!/bin/sh
if [ $(uname -m) = "x86_64" ]; then
./premake5-linux-64 $*
else
./premake5-linux-32 $*
fi

BIN
build/premake5-linux-32

Binary file not shown.

BIN
build/premake5-linux-64

Binary file not shown.
Loading…
Cancel
Save