void-packages/common/environment
Đoàn Trần Công Danh 3dcac23aff environment: set -ffile-prefix-map
We're setting -fdebug-prefix-map to strip directory prefixes from debug
info, which will help ccache and reproducibility.

However, -fdebug-prefix-map doesn't help with those macros like __FILE__
and __BASE_FILE__, which needs another flags: -fmacro-prefix-map.

Replaces -fdebug-prefix-map with -ffile-prefix-map which is an alias for
both `-fdebug-prefix-map` and `-fmacro-prefix-map`. (This flag is
available since GCC 8 and Clang 10)
2023-01-05 08:23:26 +07:00
..
build common/environment: set debug-prefix-map to prevent ccache cache misses 2021-12-08 13:04:22 +01:00
build-style build-style/python3-pep517.sh: abandon pip 2022-11-09 21:24:02 -05:00
check common/environment: set debug-prefix-map to prevent ccache cache misses 2021-12-08 13:04:22 +01:00
configure environment: set -ffile-prefix-map 2023-01-05 08:23:26 +07:00
extract
fetch
install common/environment: set debug-prefix-map to prevent ccache cache misses 2021-12-08 13:04:22 +01:00
patch common/environment: set debug-prefix-map to prevent ccache cache misses 2021-12-08 13:04:22 +01:00
pkg
setup xbps-src: keep http_proxy and other lowercase proxy variables 2023-01-04 22:24:13 +07:00
setup-subpkg hooks/post-install: add fix permissions hook 2021-08-26 21:46:44 +02:00
README

README

ENVIRONMENT SHELL SNIPPETS
==========================

This directory contains shell files (must not be executable nor contain a shebang)
that are read by xbps-src when building source packages. The shell files
are read in lexical order (as ordered by shell rules).

These files shall set or unset environment variables while building packages.
Only files with the `.sh' extension are read, so this file will be simply ignored.

The following directories are used to set the order in which the shell snippets
should be read by xbps-src:

	* build-style	(to set vars for a specific build_style helper)
	* setup		(before reading template)
	* setup-subpkg	(before running the subpkg <pkgname>_package() function)
	* fetch		(before running fetch phase)
	* extract	(before running extract phase)
	* configure	(before running configure phase)
	* build		(before running build phase)
	* check		(before running check phase)
	* install	(before running install phase)
	* pkg		(before running pkg phase)

NOTES
~~~~~
* Symlinks can be created (relative) to make a shell snippet available in
  multiple phases.