GNOME Builder is a general purpose integrated development environment (IDE) for GNOME desktop environment. It supports multiple programming languages including C, C++, Python and Rust. https://wiki.gnome.org/Apps/Builder
Questions tagged [gnome-builder]
47 questions
14
votes
1 answer
bwrap: execvp application: No such file or directory (GNOME Builder Flatpak)
When I try to run the GJS GNOME Example application from GNOME Builder 3.32.4 (Flatpak'ed), I get the error:
bwrap: execvp : No such file or directory
I tried "Clean" and "Rebuild" the project, but with no help.
This only happens…

Bastian
- 620
- 5
- 14
5
votes
1 answer
gnome-builder don't find my glade file
I try to write GUI programs with gnome-builder and try to make the layout with Glade. I made a tutorial on Programmer's Notes.
C
#include
int main(int argc, char *argv[]){
GError *err = NULL;
GtkBuilder …
user8092846
4
votes
0 answers
Python code autocompletion with Gnome-Builder
I created a project with gnome builder using the Gnome Application template, opened the main.py file that is generated by the builder to test intellisense for python code and realized that it doesn't work.
The jedi extension for python is enabled, I…

Matheus Saraiva
- 1,144
- 1
- 11
- 33
4
votes
2 answers
Flatpak Meson Not Finding Vala Libraries From Gnome Builder
From Linux, I'm using Meson (0.44.0) within Gnome Builder (3.26.4) for a console program that will use Gee and GXml. My intent is to write this in Genie.
When I use Meson within Gnome Builder it fails but the same succeeds when invoked from the…

AsymLabs
- 933
- 9
- 15
3
votes
1 answer
Flatpak bundle libmysqlclient
I'm trying to build a Vala program with flatpak. I need to connect to a mysql-server and thats why i need to bundle libmysqlclient with my flatpak.
Thats why I added mysql_config to my meson.build file.
project('zeiterfassunggtk', ['c', 'vala'], …

Gerald Zehetner
- 596
- 4
- 21
3
votes
0 answers
Meson find_program not finding program
I'm building a Vala program with gnome-builder and flatpak. I wan't to connect to a mySQL Database. Thats why I need to run mysql_config to get the right compiler flags.
So I added mysql_config = find_program('mysql_config')to my meson.build…

Gerald Zehetner
- 596
- 4
- 21
2
votes
1 answer
How Change GJS App output filename with meson
i have made a graphic software with JavaScript and GJS with GNOME builder. The problem is that whenever I want to run the software, I have to enter the application ID in the terminal (e.g. org.example.app), which is inconvenient.
I changed the…

Behzad
- 23
- 3
2
votes
1 answer
How to populate unit tests field in gnome-builder with custom tests?
I am trying to build my first gtk application using python3 in the gnome builder IDE, and there is an auto generated field for unit tests that I would like to take advantage of to keep my workspace neat. However,I can't seem to figure out how to use…

Mattyb2851
- 21
- 3
2
votes
0 answers
Unable to run a project using gnome-builder
I recently installed gnome-builder using flatpak. But when I try to run the gedit project it shows the error ide-run-manager[ 2]: WARNING: Not a make build system . But it just compiles fine. I am new to using builder.

Rio_Nyx
- 96
- 3
- 7
2
votes
2 answers
Can Gnome Builder actually produce something else than flatpaks?
I can't seem to find any documentation as to how to configure builds to produce something else than the pre-configured flatpaks. Duplicating build configurations and changing the settings doesn't seem to give me the option to produce anything else…

jaqmol
- 21
- 2
2
votes
2 answers
Git commit, push and pull with Gnome-Builder
How to do git commit, push and pull in builder?
I have not found any way to graphically do this through the IDE Builder.

Matheus Saraiva
- 1,144
- 1
- 11
- 33
2
votes
1 answer
libpeas-1.0 not found by meson-dependency but by pkg-config
I am using GNOME builder to create a vala project and tried to add libpeas-1.0 as a dependency to meson via:
dependency('libpeas-1.0', version: '>= 1.22')
which fails with:
src/meson.build:10:0: ERROR: Native dependency 'libpeas-1.0' not found
if…

0815
- 25
- 5
1
vote
0 answers
Error when adding matplotlib to flatpak gnome-builder project
I tried to import matplotlib module to my flatpak project by generating modules by flatpak-pip-generator but I got this error when running:
Running: pip3 install --verbose --exists-action=i --no-index --find-links="file://${PWD}"…

Đỗ Quang Huy
- 25
- 6
1
vote
0 answers
How to change variable value while debugging in Gnome Builder?
How to change variable value while debugging in Gnome Builder? I have used "set var=val" but it did not worked in c++ gtkmm3.

Ritu Lahkar
- 407
- 1
- 8
1
vote
1 answer
Using Gnome Builder with Python
I am trying to create a Project with Gnome Builder in Python.
The documentation is very limited, but I think found out:
When you press the "build" button in Builder, it tries to build a flatpak and runs it.
This works for the initial project…

Ulrich Leutner
- 31
- 4