Questions tagged [anjuta]

An IDE written for the GNOME project. Supports C, C++, Java, JavaScript, Python and Vala.

From the home page:

What is Anjuta DevStudio?

Anjuta DevStudio is a versatile software development studio featuring a number of advanced programming facilities including project management, application wizard, interactive debugger, source editor, version control, GUI designer, profiler and many more tools. It focuses on providing simple and usable user interface, yet powerful for efficient development.

43 questions
9
votes
15 answers

To IDE or Not? A beginner developer's dilemma

Basically, me and a friend of mine are just planning to work on a Python project which would have GUI interface, and enable file transfer over and remote file listing. We have most of the tools which we are going to use, Glade, Python etcetera. I…
elricL
  • 1,148
  • 2
  • 11
  • 19
6
votes
3 answers

Python3 support in Anjuta

I have recently downloaded and installed Anjuta as a tool for Python development. I am developing in Python 3.2.3, on an Ubuntu 12.04 platform. Following the 'Create a new project' advice on the Gnome Dev Center website I started to follow the…
Bobble
  • 2,721
  • 3
  • 20
  • 29
5
votes
3 answers

What is ltmain.sh, and why does automake say it is missing? What is a good auto (make/conf/etc) generator?

I just want to develop a C app in linux with the auto(make/conf/...) stuff automatically generated. I tried generating it with ede and anjuta, but it doesn't seem to generate Makefile.am. So, I tried running automake, and it says "ltmain.sh" isn't…
gersh
  • 2,017
  • 3
  • 21
  • 23
5
votes
2 answers

How To Save Content of GTKTextBuffer to a File

I'm writing on Ubuntu 12.04 in Anjuta with C and GTK a program. It's a graphical interface for the nbc (Lego NXT Compiler). I have a GTKTextView. Now I want to save the content of the textview to a file, which could be chosen by a GTKFileChooser.…
user1464420
  • 69
  • 1
  • 4
4
votes
1 answer

How to include resources file in anjuta project

I'm trying to update a graphical project in vala, moving lot of code lines into an ui file. I want to use template (available with glib-2.38 and GTK+3.8, something like that). My project is managed with Anjuta and autoconf. In the src directory…
luc.chante
  • 409
  • 5
  • 15
3
votes
1 answer

How to get --prefix value passed to Autotools configure script in C code?

I would like to know how can I get the --prefix and the --exec-prefix values passed to the configure script (autotools) in my c source code? For example if I'm using autotools to build a package in linux I do: ./configure --prefix=/usr/local/apps…
John Smith
  • 31
  • 1
2
votes
2 answers

How to make Anjuta DevStudio prompt tips like Eclipse?

I used to use Eclipse to develop Java and when I used the Ctrl+Space, Eclipse would prompt some tips for coding. When it comes to Anjuta DevStudio, can it do the same job? If not, anyone can introduce me to an IDE for C and C++ development on Linux?
kaiwii ho
  • 1,297
  • 7
  • 21
  • 39
2
votes
1 answer

How do I get Anjuta to higlight errors/lines produced by my build system (waf)?

Waf outputs errors like the following Waf: Entering directory `/home/atomos/dc_mmo/netclient/build' [47/53] c: c_lib/c_lib.c -> build/c_lib/c_lib.c.1.o In file included from ../c_lib/c_lib.c:12: ../c_lib/./physics/common.c: In function…
HaltingState
  • 1,720
  • 1
  • 17
  • 22
2
votes
0 answers

anjuta code-completion in Debian

Can you share your experience with making code-completion work in Anjuta, at least for C/C++? It had failed to code-complete both references to inside my code and to various libraries (GLib, etc) as well. I tried several times to make it work…
Victor Sorokin
  • 11,395
  • 1
  • 32
  • 48
2
votes
1 answer

Anjuta configuration for GNOME Javascript application development

I trying to run a GNOME JavaScript application tutorial in Anjuta.: const GLib = imports.gi.GLib; const Gtk = imports.gi.Gtk; const Gda = imports.gi.Gda; const Lang = imports.lang; function Demo () { this._init (); } Demo.prototype = { _init:…
BuZZ-dEE
  • 3,875
  • 7
  • 48
  • 76
2
votes
1 answer

Adding -std=c++11 to compiler options in Anjuta 3.4.3

I'm fairly far in a project using GTKmm atm, and I'm trying to add in some code a friend of mine have been working on. However I'm getting this error: error This file requires compiler and library support for the ISO C++ 2011 standard. This support…
Excludos
  • 610
  • 1
  • 7
  • 21
2
votes
1 answer

How to step through a C program in Anjuta?

I need to step through this program, but the icons related to debugging are greyed out, even if I set the configuration to 'debug'. Any idea how this is supposed to work? #include int main( void ) { int number = 7; printf ( "%d",…
2
votes
1 answer

Debug session freezes when trying to watch an array

I am using ubuntu 12.04. I have used so far anjuta and codelite as IDE's for C++ school projects. However, with both of them I have encountered one problem: After starting the debugger, everything works fine till I try to add an array at watches'…
Popa Mihai
  • 23
  • 3
2
votes
1 answer

How do you find variable and function definitions in Anjuta?

Is Anjuta capable of telling you where a variable or function is first defined? If so, how do you do it? EDIT: Is there a way to hover over a symbol and jump to the definition like in other IDEs? For example, in netbeans you can ctrl+click a symbol…
trusktr
  • 34,715
  • 41
  • 148
  • 226
1
vote
1 answer

Vala. How to connect SQLite in Anjuta IDE?

In line using Sqlite; an error occurs: "The namespace name` Sqlite 'could not be found " I previously installed SQLite and command line compilation works : valac --pkg gtk + -3.0 --pkg sqlite3 -X -lm SomeFile.vala But if I create and compile a…
1
2 3