LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 10-09-2009, 09:21 PM   #91
Linux_bird
LQ Newbie
 
Registered: Sep 2009
Posts: 4

Rep: Reputation: 1
Smile


Actually, a free complier must have much more limits than the paid version.
 
Old 10-10-2009, 10:07 AM   #92
graemef
Senior Member
 
Registered: Nov 2005
Location: Hanoi
Distribution: Fedora 13, Ubuntu 10.04
Posts: 2,379

Rep: Reputation: 148Reputation: 148
Quote:
Originally Posted by Linux_bird View Post
Actually, a free complier must have much more limits than the paid version.
Can you please provide some concrete evidence to support that argument.
 
Old 10-15-2009, 03:43 PM   #93
albertz
LQ Newbie
 
Registered: Mar 2009
Posts: 8

Rep: Reputation: 0
Quote:
Originally Posted by Lawand View Post
Qt Creator for Qt development
I like QtCreator not only for Qt development. It has a very nice autocompletion support (which works good) and is fast and simple.
 
Old 10-24-2009, 10:56 PM   #94
humpty
LQ Newbie
 
Registered: Jul 2009
Posts: 5

Rep: Reputation: 0
A section for Toolkits Gui IDEs ?

e.g
Fluid / Fltk
 
Old 11-15-2009, 11:53 PM   #95
kbp
Senior Member
 
Registered: Aug 2009
Posts: 3,790

Rep: Reputation: 653Reputation: 653Reputation: 653Reputation: 653Reputation: 653Reputation: 653
poor-man's assembly IDE on linux (scite, scite-debug, nasm, ld and gdb)

Hey,

Not sure if this fits in this topic, if not please feel free to relocate

This is a setup I came up with for assembly coding on linux

- Install scite, nasm, binutils and gdb
- Download scite-debug from: http://scitedebug.luaforge.net/ and extract to /usr/share/scite/
- Create '.SciTEUser.properties' in your home directory:

Code:
cat << 'EOF' > ~/.SciTEUser.properties
# 0.1 - 20091116 - killboy[underscore]powerhed[at]yahoo[dot]com[dot]au
# Enable line numbers
line.margin.visible=1
line.margin.width=3

# Use fixed width font
font.base=$(font.monospace)
font.small=$(font.monospace)
font.comment=$(font.monospace)
font.text=$(font.monospace)
font.text.comment=$(font.monospace)
font.embedded.base=$(font.monospace)
font.embedded.comment=$(font.monospace)
font.vbs=$(font.monospace)

# Print timing info
time.commands=1

# Display path info
title.full.path=1

# Load scite-debug
ext.lua.startup.script=/usr/share/scite/scite-debug/extman.lua

# Set build options
# Default compile and link options generate symbols
if PLAT_GTK
	# compile
	command.compile.$(file.patterns.asm)=nasm -g -f elf $(FileNameExt)
	# link
	command.name.0.*.asm=Link
	command.0.*.asm=ld -o $(FileName) $(FileName).o
	# run
	command.go.$(file.patterns.asm)=*./$(FileName) $(1) $(2) $(3) $(4) 2>&1
	command.go.needs.$(file.patterns.asm)=nasm -g -f elf $(FileNameExt) && ld -o $(FileName) $(FileName).o
	# build
	command.build.$(file.patterns.asm)=nasm -g -f elf $(FileNameExt) && ld -o $(FileName) $(FileName).o
	# build and strip
	command.name.1.$(file.patterns.asm)=Build and Strip
	command.1.$(file.patterns.asm)=nasm -g -f elf $(FileNameExt) && ld -o $(FileName) $(FileName).o -s
EOF
You'll also need to modify /usr/share/scite/asm.properties to ensure monospaced font usage -

Code:
# Assembler Styles
#style.asm.32=fore:#808080,font:Verdana,size:8
style.asm.32=fore:#808080
cheers,

kbp

Last edited by kbp; 02-17-2010 at 10:00 PM. Reason: STDERR wasn't showing in output console
 
Old 12-13-2009, 04:32 PM   #96
action_owl
Member
 
Registered: Jan 2009
Location: 127.0.0.1
Distribution: Fedora, CentOS, NetBSD
Posts: 115

Rep: Reputation: 17
You're missing the Arduino and Processing IDEs both of which are Open Source.

Arduino
http://arduino.cc/en/Main/Software

Processing
http://processing.org/download/

Arduino compiles to C/C++ and Processing compiles to Java

Last edited by action_owl; 12-13-2009 at 04:36 PM.
 
Old 12-27-2009, 01:08 PM   #97
artur13
Member
 
Registered: Dec 2009
Posts: 31

Rep: Reputation: 16
I think the Aptana Studio is also worth to mention. Aptana is aimed to be a IDE for web developers and can be install as eclipse plugin as well. And Komodo edit might be also good choice
Greetings,
Artur

Last edited by artur13; 12-27-2009 at 01:17 PM.
 
Old 03-10-2010, 10:56 PM   #98
Kenny_Strawn
Senior Member
 
Registered: Feb 2010
Location: /usa/ca/orange_county/lake_forest
Distribution: ArchBang, Google Android 2.1 + Motoblur (on Motortola Flipside), Google Chrome OS (on Cr-48)
Posts: 1,791
Blog Entries: 62

Rep: Reputation: 56
I use Geany myself: it is what I used for this. For screenshots of Geany with the file open in it:

Attachment 2993

Attachment 2992

Last edited by Kenny_Strawn; 05-08-2010 at 12:20 PM.
 
Old 04-28-2010, 11:00 AM   #99
kubba
LQ Newbie
 
Registered: Apr 2010
Posts: 2

Rep: Reputation: 0
Thank you very much.
 
Old 06-02-2010, 06:52 PM   #100
hkothari
Member
 
Registered: Jul 2009
Location: Lowell, Massachusetts
Distribution: Slackware
Posts: 70

Rep: Reputation: 17
I think you should update the netbeans entry, as it now supports multiple languages, like PHP, Groovy, RoR and more.
 
Old 07-13-2010, 02:15 PM   #101
rjcooks
Member
 
Registered: Jan 2008
Location: NE AR USA
Distribution: Manjaro Linux; Previously RPM based: openSUSE ...Mandriva-2010.1.
Posts: 85

Rep: Reputation: 22
Two additional links:
Integrated Development Environments / RAD tools / GUI-builders on Linux ( http://linuxmafia.com/faq/Devtools/ides.html )

This is an old list that is handy because it breaks the IDE or Editors list down by programming language. I.e., while Eclipse and Netbeans have modules for other languages, they are listed in the JAVA section.
NB: "old" means a few of the listed projects are defunct and some links are broken ... Google is your friend if you want those few.

and

What IDE to use for Python ( http://stackoverflow.com/questions/81584 )

Of course the ' IDE for Python ' are not just for Python language(except IDLE) and the list includes editors which, IMHO, are not Integrated Development Environments because they do not integrate the two most important items: running|stepping code and debugging.

[...]
Hey, if Jeremy or any moderators are listening, this is a valuable thread but after four years has become quite a monster that never gets the OP list updated. STICKY is good but it is still unwieldy.
How about making it available in the Wiki so it can be updated properly?
...and maybe closing this to new posts by pointing to the Wiki page?
The IDE page exists,
http://wiki.linuxquestions.org/wiki/...nt_Environment
but is not nearly as complete as this thread. Only "users" can edit it, whoever they are, .
 
Old 10-26-2010, 07:04 AM   #102
Mark1986
Member
 
Registered: Aug 2008
Location: Netherlands
Distribution: Xubuntu
Posts: 87

Rep: Reputation: 11
Quote:
Originally Posted by artur13 View Post
I think the Aptana Studio is also worth to mention. Aptana is aimed to be a IDE for web developers and can be install as eclipse plugin as well. And Komodo edit might be also good choice
Greetings,
Artur
Aptana is certainly worth mentioning: http://www.aptana.org/.

Only tried Komodo for 5 minutes, not my cup of tea: http://www.activestate.com/komodo-edit.
 
Old 12-02-2010, 08:46 PM   #103
anon025
LQ Newbie
 
Registered: Dec 2010
Posts: 4

Rep: Reputation: 0
gedit is avaible on windows now
 
Old 03-01-2011, 08:58 AM   #104
deltrem
Member
 
Registered: Dec 2010
Posts: 36

Rep: Reputation: 0
I wonder if you're going to like this page: http://texteditors.org/cgi-bin/wiki....lassifications, but specially this page: http://texteditors.org/cgi-bin/wiki....uxEditorFamily.

Last edited by deltrem; 03-01-2011 at 09:01 AM.
 
Old 03-28-2011, 12:39 AM   #105
nypd365
Member
 
Registered: Mar 2011
Location: France, Paris
Posts: 64

Rep: Reputation: 1
there are a lot more softwares and compilers for programming but netbeans is the best of them.
you can easily download it from www.netbeans.org
enjoy it
 
  


Reply

Tags
development, editors, free



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Is there freeware Network Simulation software? jimdaworm Linux - Networking 10 04-18-2016 08:52 PM
freeware fractal software rblampain Linux - General 5 06-06-2006 08:25 PM
Free Software, Free Society: Selected Essays of Richard M. Stallman irfanhab Linux - General 1 11-09-2004 06:22 AM
Free Gillete Products + list of other free stuff looksmart123 General 1 08-08-2004 03:38 PM
How can I get list of all the non-free software I have? *IP* Debian 6 01-08-2004 06:59 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 07:27 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration