Go to file
Samuel Martin dd5dbe627f clapack: new package
This package provides BLAS and LAPACK libraries.

Though it is common to find implementation of these two libraries in
Fortran, this package provides a C-implementation for both, because:
- Fortran support has been deprecated in Buildroot since the 2013.11
  release;
- most of the external toolchains do not provide a Fortran compiler.

Often BLAS build-systems build some test programs and run them to
generate some source files or adjust some build optimizations, naively
assuming they are building the library for the build-machine. This does
not play well when cross-compiling.

This implementation has this defect too, by building and running a tool
generating a header.
However, the build-system allows to pass an empty header.
So, we have to patch the CMake to build the generator (but never
install it) and correctly support building with and without this header
provided by the user.

Also, some CMake patches are needed to fix the build and install rules.

[Peter: needs largefile, fix _LICENSE_FILES, tweak patch desc]
Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2014-05-04 09:10:55 +02:00
arch arch: add support for "corei7" Intel CPU optimisations 2014-05-03 03:39:29 +02:00
board update microblaze qemu boards to 3.14 2014-05-01 23:41:58 +02:00
boot boot/syslinux: install in a sub-dir of $(BINARIES_DIR) 2014-05-03 22:05:30 +02:00
configs configs/raspberrypi: bump kernel version 2014-05-03 21:21:28 +02:00
docs manual: fix C++ support in libc case, fix indentation 2014-05-02 14:58:15 +02:00
fs system: add ability to pass additional users tables. 2014-04-21 14:07:31 +02:00
linux update microblaze qemu boards to 3.14 2014-05-01 23:41:58 +02:00
package clapack: new package 2014-05-04 09:10:55 +02:00
support support: properly check bash is available 2014-04-20 11:13:36 +02:00
system system/Config.in: fix custom skeleton help text 2014-05-02 09:25:02 +02:00
toolchain toolchain: enable internal for aarch64 2014-04-24 15:21:13 +02:00
.defconfig
.gitignore
CHANGES
Config.in kernel headers: remove deprecated versions 3.6 and 3.7 2014-05-01 23:35:06 +02:00
Config.in.legacy evtest: bump version to 1.31 2014-05-03 22:56:31 +02:00
COPYING
Makefile Makefile: target-purgelocales: fix top-level parallel make support 2014-05-01 23:38:27 +02:00
Makefile.legacy
README

To build and use the buildroot stuff, do the following:

1) run 'make menuconfig'
2) select the packages you wish to compile
3) run 'make'
4) wait while it compiles
5) Use your shiny new root filesystem. Depending on which sort of
    root filesystem you selected, you may want to loop mount it,
    chroot into it, nfs mount it on your target device, burn it
    to flash, or whatever is appropriate for your target system.

You do not need to be root to build or run buildroot.  Have fun!

Offline build:
==============

In order to do an offline-build (not connected to the net), fetch all
selected source by issuing a
$ make source

before you disconnect.
If your build-host is never connected, then you have to copy buildroot
and your toplevel .config to a machine that has an internet-connection
and issue "make source" there, then copy the content of your dl/ dir to
the build-host.

Building out-of-tree:
=====================

Buildroot supports building out of tree with a syntax similar
to the Linux kernel. To use it, add O=<directory> to the
make command line, E.G.:

$ make O=/tmp/build

And all the output files (including .config) will be located under /tmp/build.

More finegrained configuration:
===============================

You can specify a config-file for uClibc:
$ make UCLIBC_CONFIG_FILE=/my/uClibc.config

And you can specify a config-file for busybox:
$ make BUSYBOX_CONFIG_FILE=/my/busybox.config

To use a non-standard host-compiler (if you do not have 'gcc'),
make sure that the compiler is in your PATH and that the library paths are
setup properly, if your compiler is built dynamically:
$ make HOSTCC=gcc-4.3.orig HOSTCXX=gcc-4.3-mine

Depending on your configuration, there are some targets you can use to
use menuconfig of certain packages. This includes:
$ make HOSTCC=gcc-4.3 linux-menuconfig
$ make HOSTCC=gcc-4.3 uclibc-menuconfig
$ make HOSTCC=gcc-4.3 busybox-menuconfig

Please feed suggestions, bug reports, insults, and bribes back to the
buildroot mailing list: buildroot@buildroot.org