mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-02-20 00:56:17 +00:00
11 lines
133 B
Bash
Executable File
11 lines
133 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
cd
|
|
rm -rf bld-ctng
|
|
mkdir bld-ctng
|
|
cd bld-ctng
|
|
/crosstool-ng/configure --prefix=$HOME/inst-ctng
|
|
make
|
|
make install
|