https://launchpad.net/gcc-arm-embedded/4.8/4.8-2014-q2-update http://mscheminfocom.ipage.com/tiki/tiki-index.php?page=Cross+install+ACE+TAO+on+ARM+Linux https://sourcery.mentor.com/public/gnu_toolchain/arm-none-linux-gnueabi/arm-2014.05-29-arm-none-linux-gnueabi-i686-pc-linux-gnu.tar.bz2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#<[email protected]> | |
# http://dummyimage.com/600x400/000/fff&text=100000 | |
BASE_URL="http://dummyimage.com/" | |
DEFAULT_SIZE="600X400" | |
DEFAULT_BG_COLOR="000" | |
DEFAULT_COLOR="fff" | |
START=1001 | |
END=4000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://balau82.wordpress.com/2010/04/12/booting-linux-with-u-boot-on-qemu-arm/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
BASE="src" | |
for filename in $(ls $BASE/*simulator.py) | |
do | |
python $filename | |
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Kill processes that don't usually run in the background even after exiting | |
# (This script was initially targeted at the notorious viber :-) ) | |
#nelson kigen<[email protected]> | |
SUDO_ACCESS="" #Optionally put your sudo pwd here | |
no_param(){ | |
case "$1" in | |
"") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#(2014)Nelson Kigen<[email protected]> | |
set -x | |
#path to arm compiler | |
CC_PATH="/home/nkigen/development/tools/compilers/arm-2014.05/bin" | |
TARGET="arm-none-linux-gnueabi" | |
SRC_DIR="/home/nkigen/development/thesis/sources/src/" | |
BUILD_DIR=${SRC_DIR}"../build/" | |
OUTPUT_DIR=${SRC_DIR}"../output" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Applying patch: /home/nkigen/development/thesis/ubuild/specs/patches/glibc-2.16-no-libgcc_s.patch | |
Calling configure with: --prefix=/usr --with-headers=/var/tmp/ubuild.wandboard-armhf.build_dir/armv7a-hardfloat-linux-gnueabi/sysroot/usr/include --host=armv7a-hardfloat-linux-gnueabi --enable-bind-now --disable-profile --without-gd --without-cvs --disable-multi-arch --enable-obsolete-rpc --enable-kernel=2.6.9 --enable-add-ons=nptl,libidn,/var/tmp/ubuild.wandboard-armhf.build_dir/armv7a-hardfloat-linux-gnueabi/tools/usr/src/glibc-ports | |
configure: WARNING: if you wanted to set the --build type, don't use --host. | |
If a cross compiler is detected then cross compile mode will be used | |
checking build system type... x86_64-unknown-linux-gnu | |
checking host system type... armv7a-hardfloat-linux-gnueabi | |
checking for armv7a-hardfloat-linux-gnueabi-gcc... armv7a-hardfloat-linux-gnueabi-gcc | |
checking for suffix of object files... o | |
checking whether we are using the GNU C compiler... yes | |
checking whether armv7a-hardfloat-linu |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
myprefix=YOUR_CUSTOM_LOCATION | |
wget http://ftp.gnu.org/gnu/m4/m4-1.4.17.tar.gz | |
wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz | |
wget http://ftp.gnu.org/gnu/automake/automake-1.15.tar.gz | |
wget http://ftp.gnu.org/gnu/libtool/libtool-2.4.6.tar.gz | |
gzip -dc m4-1.4.17.tar.gz | tar xvf - | |
gzip -dc autoconf-2.69.tar.gz | tar xvf - | |
gzip -dc automake-1.15.tar.gz | tar xvf - | |
gzip -dc libtool-2.4.6.tar.gz | tar xvf - | |
cd m4-1.4.17 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DMTCP version: 2.5.0-rc2 | |
Date built: Sat Jul 16 16:32:18 UTC 2016 | |
config.log: ./configure | |
Linux alarm36 3.19.0-3-ARCH+ #1 SMP PREEMPT Wed Apr 20 03:03:00 UTC 2016 armv7l GNU/Linux | |
libc version: ldd (GNU libc) 2.23 | |
Compiler: gcc | |
Using built-in specs. | |
COLLECT_GCC=gcc | |
COLLECT_LTO_WRAPPER=/usr/lib/gcc/armv7l-unknown-linux-gnueabihf/5.3.0/lto-wrapper | |
Target: armv7l-unknown-linux-gnueabihf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
# Generated by configure. | |
# Run this file to recreate the current configuration. | |
# Compiler output produced by configure, useful for debugging | |
# configure, is in config.log if it exists. | |
debug=false | |
ac_cs_recheck=false | |
ac_cs_silent=false |