We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7107847 commit 2acd9f1Copy full SHA for 2acd9f1
reference/tools/system/package_manager.rst
@@ -171,13 +171,13 @@ The default mapping that Conan uses for *APT* packages architecture is:
171
172
.. code-block:: python
173
174
- self._arch_names = {"x86_64": "x86_64",
175
- "x86": "i?86",
+ self._arch_names = {"x86_64": "amd64",
+ "x86": "i386",
176
"ppc32": "powerpc",
177
- "ppc64le": "ppc64le",
178
- "armv7": "armv7",
179
- "armv7hf": "armv7hl",
180
- "armv8": "aarch64",
+ "ppc64le": "ppc64el",
+ "armv7": "arm",
+ "armv7hf": "armhf",
+ "armv8": "arm64",
181
"s390x": "s390x"} if arch_names is None else arch_names
182
183
.. _conan_tools_system_package_manager_yum:
0 commit comments