aboutsummaryrefslogtreecommitdiffstats
path: root/rules.mk
Commit message (Expand)AuthorAgeFilesLines
* build: add ninja build tool and make it available for cmakeFelix Fietkau2021-06-121-0/+6
* build: introduce $(MKHASH)Leonardo Mörlein2021-05-131-2/+5
* build: make sure asm gets built with -DPICPhilip Prindeville2021-03-241-3/+3
* Mostly revert "build: add support for fixing up library soname"Felix Fietkau2021-02-151-4/+0
* build: add support for fixing up library sonameFelix Fietkau2021-02-141-0/+6
* build: use SPDX license tagsPaul Spooren2021-02-051-4/+1
* rules: fix empty COMMITCOUNT/AUTORELEASEPaul Spooren2021-01-301-2/+2
* rules: fix COMMITCOUNT logicPaul Spooren2021-01-261-1/+1
* rules: add AUTORELEASE and COMMITCOUNT variablesPaul Spooren2021-01-221-0/+26
* rules.mk: use -fPIC instead of -fpic on arm64Stijn Tintel2020-12-071-1/+1
* cmake.mk,rules.mk: fix host builds using CMake and ccachePetr Štetiar2020-11-281-0/+1
* rules.mk: remove redundant target flagsPetr Štetiar2020-11-271-2/+0
* tools/sstrip: update to latest versionRui Salvaterra2020-11-261-1/+1
* rules.mk: simplify FAKEROOT command lineJo-Philipp Wich2020-10-301-6/+1
* build: fix path to libfakeroot on macOSFelix Fietkau2020-09-011-1/+7
* tools: fakeroot: pass paths of libfakeroot.so and fakedDaniel Golle2020-09-011-1/+1
* tools: add fakerootThomas Petazzoni2020-08-101-0/+1
* build: make prefix mapping of debug information optionalFelix Fietkau2020-08-061-1/+1
* build: improve ccache supportRoman Yeryomin2020-07-111-0/+3
* rules.mk: remove "$(STAGING_DIR)/include"Sebastian Kemper2019-11-021-1/+1
* toolchain,build: prefer -ffile-prefix-map for gcc-8+Paul Spooren2019-10-091-4/+4
* target/imagebuilder: use multi-thread support for xz compressionMartin Schiller2019-10-091-0/+1
* rules: allow arbitrary log destinationPaul Spooren2019-09-291-1/+1
* librpc: remove packageAndy Walsh2019-01-221-2/+0
* rules.mk: fix syntax errorJo-Philipp Wich2018-11-291-1/+1
* rules.mk: add INSTALL_SUID macroJo-Philipp Wich2018-11-291-0/+1
* rules.mk: add ESED commandKonstantin Demin2018-09-241-0/+1
* toolchain/gcc: add config symbol to determine how to apply path remappingSyrone Wong2018-08-201-3/+3
* rules.mk: replace iremap when using GCC 8Syrone Wong2018-07-221-0/+4
* build: include package directory in sha256sums when running on buildbotJo-Philipp Wich2018-06-271-1/+2
* imagebuilder: reuse rootfs preparation from rootfs.mkMatthias Schiffer2018-03-071-0/+1
* rules.mk: drop `include_mk` build ruleAlexandru Ardelean2018-01-261-4/+0
* build: remove use of STAGING_DIR_HOST/usr (fixes cmake build error on macOS)Felix Fietkau2018-01-171-2/+2
* rules.mk: export TMPDIRJo-Philipp Wich2017-12-121-0/+1
* rukes.mk: this patch broken grub2 buildsJohn Crispin2017-09-011-2/+0
* rules.mk: add missing CPP definitionBangLang Huang2017-08-231-0/+2
* rules.mk: make PKG_CONFIG_DEPENDS properly track string valuesMatthias Schiffer2017-02-271-1/+1
* build: Pass -iremap gcc option as a single argumentMichal Sojka2017-02-091-1/+1
* build: make <subdir>/install opt-in, use it for target/ onlyFelix Fietkau2017-02-091-1/+1
* build: remove libc version suffix from build/staging directoriesFelix Fietkau2017-02-071-2/+1
* build: Suffix build directory with _$(LIBC) for external toolchainsFlorian Fainelli2017-01-291-1/+2
* build: introduce STAGING_DIR_IMAGEJo-Philipp Wich2017-01-271-0/+1
* rules.mk: export STAGING_DIR_HOSTPKGMatthias Schiffer2017-01-191-1/+1
* build: introduce extra targets that contain only proper dependenciesFelix Fietkau2017-01-181-4/+5
* build: define common subdir targets in rules.mkFelix Fietkau2017-01-181-0/+9
* build: move STAGING_DIR_HOSTPKG and BUILD_DIR_HOST back to a common directory...Matthias Schiffer2017-01-181-5/+5
* build: use mkhash to replace various quirky md5sum/openssl callsFelix Fietkau2017-01-051-1/+1
* build: add defaults for PKG_SOURCE, PKG_SOURCE_SUBDIR, PKG_VERSIONFelix Fietkau2016-12-221-0/+2
* build: implement make check and make package/X/checkFelix Fietkau2016-12-171-0/+8
* rules.mk: add STAGING_DIR_HOSTPKG variableJo-Philipp Wich2016-11-011-0/+1
n> Netname { // Set to true when the name of this net is automatically created and // likely not of interest for a regular user. bool hide_name = 1; // Signal(s) that make up this net. BitVector bits = 2; // Freeform attributes. map<string, Parameter> attributes = 3; } repeated Netname netname = 4; } // And-Inverter-Graph model. message Model { message Node { // Type of AIG node - or, what its' value is. enum Type { TYPE_INVALID = 0; // The node's value is the value of the specified input port bit. TYPE_PORT = 1; // The node's value is the inverted value of the specified input // port bit. TYPE_NPORT = 2; // The node's value is the ANDed value of specified nodes. TYPE_AND = 3; // The node's value is the NANDed value of specified nodes. TYPE_NAND = 4; // The node's value is a constant 1. TYPE_TRUE = 5; // The node's value is a constant 0. TYPE_FALSE = 6; }; Type type = 1; message Port { // Name of port. string portname = 1; // Bit index in port. int64 bitindex = 2; } message Gate { // Node index of left side of operation. int64 left = 1; // Node index of right side of operation. int64 right = 2; } oneof node { // Set for PORT, NPORT Port port = 2; // Set for AND, NAND. Gate gate = 3; } // Set when the node drives given output port(s). message OutPort { // Name of port. string name = 1; // Bit index in port. int64 bit_index = 2; } repeated OutPort out_port = 4; } // List of AIG nodes - each is explicitely numbered by its' index in this // array. repeated Node node = 1; } // A Yosys design netlist dumped from RTLIL. message Design { // Human-readable freeform 'remark' string. string creator = 1; // List of named modules in design. map<string, Module> modules = 2; // List of named AIG models in design (if AIG export enabled). map<string, Model> models = 3; }