summaryrefslogtreecommitdiffstats
path: root/targets
Commit message (Collapse)AuthorAgeFilesLines
* Add in DIRDEPS_BUILD support.bdrewery2016-01-071-0/+1
| | | | Sponsored by: EMC / Isilon Storage Division
* local.meta.sys.mk already defines TARGET_ARCHES_armbdrewery2015-12-081-2/+0
|
* Garbage collect removed directories.bdrewery2015-12-071-2/+0
| | | | Sponsored by: EMC / Isilon Storage Division
* rescue/rescue does not yet build in meta mode.bdrewery2015-12-031-1/+0
|
* DIRDEPS_BUILD: Connect usr.sbin/camddbdrewery2015-12-031-0/+1
| | | | Sponsored by: EMC / Isilon Storage Division
* META MODE: Connect MK_NAND directories.bdrewery2015-12-022-0/+13
| | | | Sponsored by: EMC / Isilon Storage Division
* Fully connect cddl/usr.sbin/plockstat.bdrewery2015-12-021-0/+1
| | | | | | | | There seems to be no reason to keep this so private. Also add missing optional MK_CDDL files. Sponsored by: EMC / Isilon Storage Division
* META MODE: Update dependencies with 'the-lot' and add missing directories.bdrewery2015-12-017-39/+239
| | | | | | | | | | | | | | This is not properly respecting WITHOUT or ARCH dependencies in target/. Doing so requires a massive effort to rework targets/ to do so. A better approach will be to either include the SUBDIR Makefiles directly and map to DIRDEPS or just dynamically lookup the SUBDIR. These lose the benefit of having a userland/lib, userland/libexec, etc, though and results in a massive package. The current implementation of targets/ is very unmaintainable. Currently rescue/rescue and sys/modules are still not connected. Sponsored by: EMC / Isilon Storage Division
* META MODE: Fix userland/cddl.bdrewery2015-12-011-7/+4
| | | | | | | MK_CTF controls whether ctfmerge is ran against the binaries, not whether CTF tools should be built. Sponsored by: EMC / Isilon Storage Division
* META MODE: Rework [bootstrapped] tools PATH support.bdrewery2015-12-011-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Support more of the toolchain from TOOLSDIR. - This also improves 'make bootstrap-tools' to pass, for example, AS=/usr/bin/as to Makefile.inc1, which will tell cross-tools to use external toolchain support and avoid building things we won't be using in the build. - Always set the PATH to contain the staged TOOLSDIR directories when not building the bootstrap targets. The previous version was only setting this at MAKE.LEVEL==0 and if the TOOLSDIR existed. Both of these prevented using staged tools that were built during the build though as DIRDEPS with .host dependencies, such as the fix for needing usr.bin/localedef.host in r291311. This is not a common tool so we must build and use it during the build, and need to be prepared to change PATH as soon as it appears. This should also fix the issue of host dependencies disappearing from Makefile.depend and then reappearing due to the start of the fresh build not having the directory yet, resulting in the tools that were built not actually being used. - Only use LEGACY_TOOLS while building in Makefile.inc1. After r291317 and r291546 there is no need to add LEGACY_TOOLS into the PATH for the pseudo/targets/toolchain build. - Because the pseudo/targets/toolchain will now build its own [clang-]tblgen, the special logic in clang.build.mk is no longer needed. - LEGACY_TOOLS is no longer used outside of targets/pseudo/bootstrap-tools so is no longer passed into the environment in its build. Sponsored by: EMC / Isilon Storage Division
* META MODE: For bootstrap-tools, don't let Makefile.inc1 build any of thebdrewery2015-12-011-1/+3
| | | | | | | | | | toolchain. This change prevents building of [clang-]tblgen, which is unneeded due to already being a host dependency where needed for targets/pseudo/toolchain. Sponsored by: EMC / Isilon Storage Division
* META MODE: Fix bootstrap-tools after r291349.bdrewery2015-11-301-2/+5
| | | | | | | | | Now that OBJTOP is assumed to be proper, it needs to be overridden for the bootstrap-tools phase to ensure it is not kept as the top-level OBJTOP. Otherwise the libraries were not found during the bootstrap-tools phase. Sponsored by: EMC / Isilon Storage Division
* META MODE: Fix 'make bootstrap-tools'.bdrewery2015-11-252-28/+10
| | | | | | | | | | | | | | | The main problem was bitrot after elftoolchain being swapped in for the GNU toolchain. This also reworks how the list of 'host allowed' libraries is determined to only allow INTERNALLIBs, which is needed for libelftc to come in. For usr.bin/readelf use the same hack, as libelf and libdward, to bring in the needed sys/ headers for host builds. This has not yet been a problem due to readelf not being built as a host tool in buildworld. This is possible in the meta build though when building the toolchain. Sponsored by: EMC / Isilon Storage Division
* META MODE: Add more hosttools needed pre-universe.bdrewery2015-11-251-0/+2
| | | | Sponsored by: EMC / Isilon Storage Division
* META MODE: Need to include the LEGACY_TOOLS directories into PATH.bdrewery2015-11-251-1/+2
| | | | | | | | This is just as Makefile.inc1 does it for these phases. Otherwise some of the build tools are not found and used properly, such as 'make-roken' in the kerberos5 build on older releases. Sponsored by: EMC / Isilon Storage Division
* META MODE: Fix 'make the-lot' with recent locale changesbdrewery2015-11-252-0/+2
| | | | Sponsored by: EMC / Isilon Storage Division
* META MODE: Avoid creating TESTS directories for bootstrap.bdrewery2015-11-251-1/+1
| | | | Sponsored by: EMC / Isilon Storage Division
* META MODE: Don't override DESTDIR to the default when building the toolchain.bdrewery2015-11-251-1/+1
| | | | | | | | | | | | For this case, the normal META MODE staging logic should be used. The BSARGS having DESTDIR= is due to Makefile.inc1 overriding DESTDIR to something when appropriate. For the toolchain stage META MODE is in charge of it, not Makefile.inc1. At least include/, if staging it to the host stagedir, was impacted from this. Staging of include.host is not yet done. Sponsored by: EMC / Isilon Storage Division
* META MODE: Prefer INSTALL=tools/install.sh to lessen the need for xinstall.host.bdrewery2015-11-252-6/+8
| | | | | | | | This both avoids some dependencies on xinstall.host and allows bootstrapping on older releases to work due to lack of at least 'install -l' support. Sponsored by: EMC / Isilon Storage Division
* Disconnect unused kgzldr from sys/boot/i386emaste2015-11-201-1/+0
| | | | Sponsored by: The FreeBSD Foundation
* Remove unsupported ia64.bdrewery2015-11-192-7/+0
| | | | Sponsored by: EMC / Isilon Storage Division
* META MODE: Don't set schg flags in the stagedir for distrib-dirs.bdrewery2015-11-122-4/+4
| | | | | | This recently started setting /var/empty to schg after r290628. Sponsored by: EMC / Isilon Storage Division
* Connect nmtreebdrewery2015-11-091-0/+1
|
* Rename usr.sbin/mtree to usr.sbin/fmtree since it is not what /usr/sbin/mtreebdrewery2015-11-091-1/+1
| | | | | | actually is (which is usr.sbin/nmtree). This has tricked me numerous times.
* Connect mpsutil for META MODE.bdrewery2015-10-281-0/+1
|
* Remove more disconnected libgpib items missed in r276214.bdrewery2015-10-221-1/+0
| | | | Sponsored by: EMC / Isilon Storage Division
* All the games moved to usr.bin/ in r288485.bdrewery2015-10-021-12/+12
| | | | Sponsored by: EMC / Isilon Storage Division
* Remove defunct games removed in r279150.bdrewery2015-10-021-2/+0
| | | | Sponsored by: EMC / Isilon Storage Division
* Don't create cookie until the command is all finished, it or the commandsbdrewery2015-10-012-3/+7
| | | | | | after may fail. Sponsored by: EMC / Isilon Storage Division
* remove unused sgsmsg utility (originally imported from opensolaris)avg2015-09-281-1/+0
| | | | MFC after: 25 days
* META_MODE: Make it easier to keep the bootstrap-tools args in sync.bdrewery2015-09-261-11/+9
| | | | Sponsored by: EMC / Isilon Storage Division
* META_MODE: Remove DEP_RELDIR from Makefile.depend files.bdrewery2015-09-2519-38/+0
| | | | | | This has not been needed since r284171 in projects/bmake. Sponsored by: EMC / Isilon Storage Division
* Connect sesutil(1) and numactl(1) for META_MODE.bdrewery2015-09-191-0/+2
| | | | Sponsored by: EMC / Isilon Storage Division
* Roll WITHOUT_ELFTOOLCHAIN_TOOLS into WITHOUT_TOOLCHAINemaste2015-08-131-1/+1
| | | | | | | | | | | The option was added only to ease the transition from GNU Binutils to ELF Tool Chain tools, and that process is now complete (for the viable replacements). Noting the removal in UPDATING is sufficient as we have not shipped a release with the option. Reviewed by: brooks Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D3240
* Updated dependssjg2015-07-031-0/+1
|
* Support WITH_LLDBsjg2015-06-163-7/+9
| | | | Remove entries from userland/gnu that conflict with toolchain
* Pay attention to MK_ELFTOOLCHAIN_TOOLS so we build the desired tools.sjg2015-06-151-6/+23
|
* We cannot build makewhatis and mandocsjg2015-06-141-2/+10
|
* Reorganize targets/pseudo/userlandsjg2015-06-1229-773/+771
| | | | | | | | This target mainly exists to help check things build. Eventually targets that build real packages or images will be more important. As such move the pseudo targets that only exist for the benefit of 'userland' to under it.
* Adapt based on whether 'mk' wrapper is used.sjg2015-05-291-3/+14
| | | | | | If 'mk' is used we can expect SB_NAME to be set. Use 'mk' versions of command suggestions. Otherwise 'make' version - a bit more cumbersom.
* Merge sync of headsjg2015-05-275-89/+46
|
* Renamed pkgs/ targets/sjg2014-11-307-40/+33
|
* Rename pkgs to more generic targets (that's what they are)sjg2014-11-3051-0/+2237
Reviewed by: marcel
OpenPOWER on IntegriCloud