mirror of
https://github.com/genesi/linux-legacy.git
synced 2026-02-04 05:35:07 +00:00
9 lines
175 B
Bash
Executable File
9 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
archname="arm"
|
|
arch="ARCH=${archname}"
|
|
toolchain="arm-linux-gnueabi-"
|
|
compiler="CROSS_COMPILE=${toolchain}"
|
|
compilerversion="4.4"
|
|
numjobs="16"
|
|
jobs="-j${numjobs}"
|