Craft: Difference between revisions

From KDE Community Wiki
No edit summary
(7 intermediate revisions by 2 users not shown)
Line 3: Line 3:
== Setting up Craft ==
== Setting up Craft ==


[https://community.kde.org/Guidelines_and_HOWTOs/Build_from_source/Windows Start crafting on Windows]
[[Guidelines_and_HOWTOs/Build_from_source/Windows|Start crafting on Windows]]


[https://community.kde.org/Craft/Linux Start crafting on Linux]
[[Craft/Linux|Start crafting on Linux]]


[https://community.kde.org/Guidelines_and_HOWTOs/Build_from_source/Mac#Installation_using_Craft Start crafting on Mac]
[[Guidelines and HOWTOs/Build from source/Mac#Installation_using_Craft|Start crafting on Mac]]


[https://community.kde.org/Guidelines_and_HOWTOs/Build_from_source/FreeBSD Start crafting  on FreeBSD]
[[Guidelines_and_HOWTOs/Build_from_source/FreeBSD|Start crafting  on FreeBSD]]


== Common Craft commands ==
== Common Craft commands ==
Line 57: Line 57:
====== Updating the blueprints ======
====== Updating the blueprints ======
  craft -i craft-blueprints-kde
  craft -i craft-blueprints-kde
====== Updating all installed packages ======
craft --upgrade


== Adding new blueprints ==
== Adding new blueprints ==


Blueprints are stored in separate repositories. At the moment there are these repositories:
Blueprints are stored in separate repositories. At the moment there are these repositories:
* https://cgit.kde.org/craft-blueprints-kde.git/tree/ (enabled by default)
* git@invent.kde.org:packaging/craft-blueprints-kde.git (enabled by default)
<br/>
<br/>
To navigate to this repository on your local file system:
To navigate to this repository on your local file system:
Line 69: Line 72:


Note that the name of the package folder needs to match the blueprint name. An example would be <code>kdegraphics-mobipocket\kdegraphics-mobipocket.py</code>
Note that the name of the package folder needs to match the blueprint name. An example would be <code>kdegraphics-mobipocket\kdegraphics-mobipocket.py</code>
Learn more about blueprints: [[Craft/Blueprints]]


== Advanced tips ==
== Advanced tips ==
Line 75: Line 80:
Packages are by-default installed from the cache. To build a non default version (or to build from master)
Packages are by-default installed from the cache. To build a non default version (or to build from master)
<pre> craft --set version=some_version packagename</pre>
<pre> craft --set version=some_version packagename</pre>
The version can also be set for an entire category.
For example you can build the KDE Frameworks from a specific version:
<pre> craft --set version=some_version kde/frameworks</pre>


Here, replace <code>some_version</code> with the branch name of the source git repository of the package (like <code>master</code>) or version number (for eg: 0.57.0, 0.58.0).
Here, replace <code>some_version</code> with the branch name of the source git repository of the package (like <code>master</code>) or version number (for eg: 0.57.0, 0.58.0).
Line 130: Line 138:
* Apply, and now use this Kit for your cmake project
* Apply, and now use this Kit for your cmake project


===Debugging standalone app with symbols===
== Debugging a standalone app with symbols ==
Craft by default uses RelWithDebInfo build type. As such, each library and executable is compiled with the release symbols stripped from the main file and saved separately in a corresponding .pdb file on Windows and .dSYM package on Mac.  
Craft by default uses RelWithDebInfo build type. As such, each library and executable is compiled with the release symbols stripped from the main file and saved separately in a corresponding .pdb file on Windows and .dSYM package on Mac.  


Those symbols will not be included in a final redistributable package generated by craft (--package option). However, if PackageDebugSymbols is enabled in CraftSettings.ini, a separate archive will be created will all the debug symbols combined.
Those symbols will not be included in a final redistributable package generated by craft (--package option). However, if PackageDebugSymbols is enabled in CraftSettings.ini, a separate archive will be created will all the debug symbols combined.


If an issue you're trying to debug is specific to a packaged app only, you can use Debug -> Start Debugger option to run the external app (the packaged one) and attach to it:
If an issue you're trying to debug is specific to a packaged app only, you can use Qt Creator's Debug -> Start and Debug External Application option to run the packaged app and automatically attach to it:


* In "Local Executable" provide a path to executable file inside the .app container, e.g. /Volumes/External/CraftRoot/build/extragear/kmymoney/archive/Applications/KDE/kmymoney.app/Contents/MacOS/kmymoney
* In "Local Executable" provide a path to executable file inside the .app container, e.g. /Volumes/External/CraftRoot/build/extragear/kmymoney/archive/Applications/KDE/kmymoney.app/Contents/MacOS/kmymoney
* In "Debug information" provide a path to debug symbols package generate by craft, e.g. /Volumes/External/CraftRoot/build/extragear/kmymoney/image-RelWithDebInfo-master/Applications/KDE
* In "Debug information" provide a path to a folder containing the debug symbols package (kmymoney.app.dSYM) generated by craft, e.g. /Volumes/External/CraftRoot/build/extragear/kmymoney/image-RelWithDebInfo-master/Applications/KDE  
* check "Break at main" if it's your initial setup to make sure everything works as expected
* Optionally add the Source Paths Mapping (Preferences -> Debugger) if your local source code location doesn't match the one used to generate the package debugged, resulting in the main() break showing a disassembled code.


== Troubleshooting ==
== Troubleshooting ==

Revision as of 15:39, 20 March 2021

Craft is an open source meta build system and package manager. It manages dependencies and builds libraries and applications from source, on Windows, Mac, Linux and FreeBSD.

Setting up Craft

Start crafting on Windows

Start crafting on Linux

Start crafting on Mac

Start crafting on FreeBSD

Common Craft commands

Searching for a package
craft --search packagename
Installing a package (and dependencies)
craft packagename
Uninstalling a package
craft --unmerge packagename
Updating a package
craft -i packagename
Switching to the source directory of a package
cs packagename
Switching to the build directory of a package
cb packagename
Compiling a package

if you just modified the source code and want to test-compile:

craft --compile packagename
Creating an installer

.dmg bundle, .exe setup, ... for a specific package:

craft --package packagename

The option Packager/PackageType in CraftSettings.ini controls which type of installer is created

Developing with Craft

Installing a library

When developing on a specific application, you may want to develop on its library as well.

 craft -i --no-cache <somelib>

--no-cache also disables the cache for all missing/outdated dependencies.

Testing new changes

For the applications to run with changes to the source of the package:

 craft --compile --install --qmerge <somelib>
Examples
Updating Craft itself
craft -i craft
Updating the blueprints
craft -i craft-blueprints-kde
Updating all installed packages
craft --upgrade

Adding new blueprints

Blueprints are stored in separate repositories. At the moment there are these repositories:


To navigate to this repository on your local file system:

cs craft-blueprints-kde

Open a file browser in that folder and start adding new recipes by copying from existing ones.

Note that the name of the package folder needs to match the blueprint name. An example would be kdegraphics-mobipocket\kdegraphics-mobipocket.py

Learn more about blueprints: Craft/Blueprints

Advanced tips

Hardcode versions of packages

Packages are by-default installed from the cache. To build a non default version (or to build from master)

 craft --set version=some_version packagename

The version can also be set for an entire category. For example you can build the KDE Frameworks from a specific version:

 craft --set version=some_version kde/frameworks

Here, replace some_version with the branch name of the source git repository of the package (like master) or version number (for eg: 0.57.0, 0.58.0). Alternatively ,edit $CraftRoot/etc/BlueprintSettings.ini and add:

 [category/packagename]
 version = branch
Examples

For example, to install master branch of khtml, the line to be appended should look like:

[frameworks/khtml]
version = master

To change the version of all packages of a category, like libs/qt5 add

 [libs/qt5]
 version = 5.9.3

Using Craft with Qt Creator

Windows

To compile from within Qt Creator, I need to set up a kit. This is an example for mingw64.

  • Add a cmake if none is set: C:\CraftRoot\dev-utils\cmake\bin\cmake.exe
  • Add a debugger: C:\CraftRoot\mingw64\bin\gdb.exe
  • Add a C++ compiler and a C compiler. Both: C:\CraftRoot\mingw64\bin\gcc.exe
    • Ensure that the ABI is correctly set
  • Add a Qt: C:\CraftRoot\bin\qmake.exe
  • Add a kit with all of the above
  • Edit the Environment:
    • PATH=$(PATH);C:\CraftRoot\bin;C:\CraftRoot\dev-utils\bin\; C:\CraftRoot\mingw64\bin
  • Use the kit on a project
  • Setup cmake configuration (all case):
    • Extend CMAKE_PREFIX_PATH, add the Craft prefix path (ie: CMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX};C:\CraftRoot)

MacOS

To be able to use Craft libs in your cmake project from QtCreator follow these steps:

  • If the QtVersion used by Craft is not already registered in QtC, then create a new QtVersion by pointing it to the qmake used by Craft
  • Create a new kit by duplicating an existing one or creating a new one from scratch
  • Setup properties of the kit (for from scratch kit):
    • Set cmake binary to the one used by Craft
    • Set debugger binary to the one used by Craft
    • Set C++ and C compiler to the one used by Craft
    • Select the correct QtVersion
    • Ensure abi is correct
  • Setup cmake configuration (all case):
    • Extend CMAKE_PREFIX_PATH, add the Craft prefix path (ie: CMAKE_PREFIX_PATH:STRING=%{Qt:QT_INSTALL_PREFIX};/Volumes/Projects/Developers/Craft)
  • Edit the Environment:
    • PATH=$(PATH):~/CraftRoot/bin:~/CraftRoot/dev-utils/bin/
    • QT_PLUGIN_PATH=~/CraftRoot/bin/plugins
  • Apply, and now use this Kit for your cmake project

Debugging a standalone app with symbols

Craft by default uses RelWithDebInfo build type. As such, each library and executable is compiled with the release symbols stripped from the main file and saved separately in a corresponding .pdb file on Windows and .dSYM package on Mac.

Those symbols will not be included in a final redistributable package generated by craft (--package option). However, if PackageDebugSymbols is enabled in CraftSettings.ini, a separate archive will be created will all the debug symbols combined.

If an issue you're trying to debug is specific to a packaged app only, you can use Qt Creator's Debug -> Start and Debug External Application option to run the packaged app and automatically attach to it:

  • In "Local Executable" provide a path to executable file inside the .app container, e.g. /Volumes/External/CraftRoot/build/extragear/kmymoney/archive/Applications/KDE/kmymoney.app/Contents/MacOS/kmymoney
  • In "Debug information" provide a path to a folder containing the debug symbols package (kmymoney.app.dSYM) generated by craft, e.g. /Volumes/External/CraftRoot/build/extragear/kmymoney/image-RelWithDebInfo-master/Applications/KDE
  • check "Break at main" if it's your initial setup to make sure everything works as expected
  • Optionally add the Source Paths Mapping (Preferences -> Debugger) if your local source code location doesn't match the one used to generate the package debugged, resulting in the main() break showing a disassembled code.

Troubleshooting

If a package fails to build, you'll be greeted with something like:

 ...
 craft warning: while running make cmd: jom
 craft warning: Action: compile for libs/qt5/qtbase FAILED
 *** Craft all failed: all of libs/qtbase failed after 0:07:25 ***
 craft error: fatal error: package libs/qtbase all failed

In order to figure out what failed, grep the command line output above for errors.

Or have a look at the log file located in $HOME/.craft (%USERPROFILE%\.craft on Windows) which will contain much more details.

Search for "error", or "error:" in the file.

News

Blog

Getting in Touch