1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
- :last-reviewed: 2019-02-14
- :build-flags: link:https://src.fedoraproject.org/rpms/redhat-rpm-config/blob/master/f/buildflags.md[build flags documentation]
- = RPM Macros
- RPM provides a rich set of macros
- to make package maintenance simpler and consistent across packages.
- For example, it includes a list of default path definitions
- which are used by the build system macros,
- and definitions for RPM package build specific directories.
- They usually should be used instead of hard-coded directories.
- It also provides the default set of compiler flags as macros,
- which should be used when compiling manually and not relying on a build system.
- == Getting and setting Macros on the command line
- It's possible to let RPM evaluate arbitrary strings containing macros
- on the command line by running `rpm --eval` on the command line:
- ....
- $ rpm --eval "some text printed on %{_arch}"
- some text printed on x86_64
- ....
- Additionally, values for macros can be temporarily provided (and overridden)
- by providing command line options to `rpm` and `rpmbuild`:
- ....
- $ rpm --define "test Hello, World!" --eval "%{test}"
- Hello, World!
- ....
- [#macros_installation]
- == Macros for paths set and used by build systems
- The macros for build system invocations
- (for example, `%configure`, `%cmake`, or `%meson`)
- use the values defined by RPM to set installation paths for packages.
- So, it's usually preferable to not hard-code these paths in spec files either,
- but use the same macros for consistency.
- The values for these macros can be inspected
- by looking at `/usr/lib/rpm/platform/*/macros` for the respective platform.
- The following table lists macros which are widely used in fedora `.spec` files.
- [cols="20%m,30%m,50%",options="header"]
- |=================================
- | macro | definition | comment
- | +%{_sysconfdir}+ | /etc |
- | +%{_prefix}+ | /usr | can be defined to `/app` for flatpak builds
- | +%{_exec_prefix}+ | +%{_prefix}+ | default: `/usr`
- | +%{_includedir}+ | +%{_prefix}+/include | default: `/usr/include`
- | +%{_bindir}+ | +%{_exec_prefix}+/bin | default: `/usr/bin`
- | +%{_libdir}+ | +%{_exec_prefix}/%{_lib}+ | default: `+/usr/%{_lib}+`
- | +%{_libexecdir}+ | +%{_exec_prefix}+/libexec | default: `/usr/libexec`
- | +%{_datadir}+ | +%{_datarootdir}+ | default: `/usr/share`
- | +%{_infodir}+ | +%{_datarootdir}+/info | default: `/usr/share/info`
- | +%{_mandir}+ | +%{_datarootdir}+/man | default: `/usr/share/man`
- | +%{_docdir}+ | +%{_datadir}+/doc | default: `/usr/share/doc`
- | +%{_rundir}+ | /run |
- | +%{_localstatedir}+ | /var |
- | +%{_sharedstatedir}+ | /var/lib |
- | +%{_lib}+ | lib64 | `lib` on 32bit platforms
- |=================================
- Some seldomly used macros are listed below for completeness.
- Old `.spec` files might still use them,
- and there might be cases where they are still needed.
- [cols="20%m,30%m,50%",options="header"]
- |=================================
- | macro | definition | comment
- | +%{_datarootdir}+ | +%{_prefix}/share+ | default: `/usr/share`
- | +%{_var}+ | /var |
- | +%{_sbindir}+ | same as +%{_bindir}+ | historically `/usr/sbin`, now `/usr/bin`, provided for compatibility
- | +%{_tmppath}+ | +%{_var}/tmp+ | default: `/var/tmp`
- | +%{_usr}+ | /usr |
- | +%{_usrsrc}+ | +%{_usr}/src+ | default: `/usr/src`
- | +%{_initddir}+ | +%{_sysconfdir}/rc.d/init.d+ | default: `/etc/rc.d/init.d`
- | +%{_initrddir}+ | +%{_initddir}+ | old misspelling, provided for compatiblity
- |=================================
- == Macros set for the RPM (and SRPM) build process
- RPM also exposes the locations of several directories
- that are relevant to the package build process via macros.
- The only macro that's widely used in `.spec` files is `+%{buildroot}+`,
- which points to the root of the installation target directory.
- It is used for setting `DESTDIR` in the package's `%install` step.
- The other macros are usually only used outside `.spec` files.
- For example, they are set by `fedpkg` to override the default directories.
- [cols="20%m,60%m,20%",options="header"]
- |=================================
- | macro | definition | comment
- | +%{buildroot}+ | +%{_buildrootdir}/%{name}-%{version}-%{release}.%{_arch}+ | same as `$BUILDROOT`
- | +%{_topdir}+ | +%{getenv:HOME}/rpmbuild+ |
- | +%{_builddir}+ | +%{_topdir}/BUILD+ |
- | +%{_rpmdir}+ | +%{_topdir}/RPMS+ |
- | +%{_sourcedir}+ | +%{_topdir}/SOURCES+ |
- | +%{_specdir}+ | +%{_topdir}/SPECS+ |
- | +%{_srcrpmdir}+ | +%{_topdir}/SRPMS+ |
- | +%{_buildrootdir}+ | +%{_topdir}/BUILDROOT+ |
- |=================================
- == Macros providing compiler and linker flags
- The default build flags for binaries on fedora are also available via macros.
- They are used by the build system macros to setup the build environment,
- so it is usually not necessary to use them directly --
- except, for example, when doing bare bones compilation with `gcc` directly.
- The set of flags listed below reflects the current state of fedora 28
- on a `x86_64` machine, as defined in the file `/usr/lib/rpm/redhat/macros`.
- The `+%{optflags}+` macro contains flags that determine `CFLAGS`, `CXXFLAGS`,
- `FFLAGS`, etc. -- the `+%{__global_cflags}+` macro evaluates to the same string.
- The current definitions of these values
- can be found in the `redhat-rpm-config` package, in the {build-flags}.
- ....
- $ rpm --eval "%{optflags}"
- -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection
- ....
- The value of the `LDFLAGS` environment variable set by build systems
- is determined by the `+%{build_ldflags}+` macro:
- ....
- $ rpm -E "%{build_ldflags}"
- -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld
- ....
|