Skip to content

Commit

Permalink
Adding initial conda builds for gcc/binutils.
Browse files Browse the repository at this point in the history
  • Loading branch information
mithro committed Sep 8, 2015
1 parent d040a09 commit 251d038
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 0 deletions.
5 changes: 5 additions & 0 deletions conda/binutils-lm32-linux/build.sh
@@ -0,0 +1,5 @@
mkdir build
cd build
../configure --target=lm32-linux --prefix=$PREFIX
make -j4
make install
20 changes: 20 additions & 0 deletions conda/binutils-lm32-linux/meta.yaml
@@ -0,0 +1,20 @@
package:
name: binutils-lm32-linux
version: 2.25.1

source:
fn: binutils-2.25.1.tar.bz2
url: https://ftp.gnu.org/gnu/binutils/binutils-2.25.1.tar.bz2
sha256: b5b14added7d78a8d1ca70b5cb75fef57ce2197264f4f5835326b0df22ac9f22

build:
number: 0

requirements:
build:
- system # [not win]

about:
home: https://www.gnu.org/software/binutils/
license: GPL
summary: 'A set of programming tools for creating and managing binary programs, object files, libraries, profile data, and assembly source code.'
6 changes: 6 additions & 0 deletions conda/gcc-lm32-linux/build.sh
@@ -0,0 +1,6 @@
rm -rf libstdc++-v3
mkdir build
cd build
../configure --prefix=$OUTPUT_DIR --target=$TARGET --enable-languages="c,c++" --disable-libgcc --disable-libssp
make -j4
make install
20 changes: 20 additions & 0 deletions conda/gcc-lm32-linux/meta.yaml
@@ -0,0 +1,20 @@
package:
name: gcc-lm32-linux
version: 4.9.3

source:
fn: gcc-4.9.3.tar.bz2
url: https://ftp.gnu.org/gnu/gcc/gcc-4.9.3/gcc-4.9.3.tar.bz2
sha256: 2332b2a5a321b57508b9031354a8503af6fdfb868b8c1748d33028d100a8b67e

build:
number: 0

requirements:
build:
- system # [not win]

about:
home: https://gcc.gnu.org/
license: GPL
summary: 'The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, Ada, and Go, as well as libraries for these languages (libstdc++, libgcj,...).'

0 comments on commit 251d038

Please sign in to comment.