Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

C++ IDE

Name: Anonymous 2009-08-15 6:02

Hi /prog/

I'm searching for a C/C++ IDE for Linux that:
- Runs natively (no java, no vm, I need speed;
- Provides intelligent code completion;
- Allows compiling steps configuration (i.e. customized makefile);

I'd like to know what does the EXPERT PROGRAMMER suggest.

Name: =+=*=F=R=O=Z=E=N==V=O=I=D=*=+= !frozEn/KIg 2009-08-15 9:37

I personally use Notepad2 and avoid any "makefiles"(which i consider bloated and poor design)



______________________________________________
http://xs135.xs.to/xs135/09042/av922.jpg
Velox Et Astrum gamedev forum: http://etastrum.phpbb3now.com
Flags are bits of colored cloth that governments use first to shrink-wrap people's brains and then as ceremonial shrouds to bury the dead.

Name: =+=*=F=R=O=Z=E=N==V=O=I=D=*=+= !frozEn/KIg 2009-08-15 9:55

>>11 I use one include file for everything.
#include "void.h" //handles all the common functions,#defines,#ifdefs and #includes


_____________________________________
http://xs135.xs.to/xs135/09042/av922.jpg
Velox Et Astrum gamedev forum: http://etastrum.phpbb3now.com
A sword is never a killer, it's a tool in the killer's hands.

Name: =+=*=F=R=O=Z=E=N==V=O=I=D=*=+= !frozEn/KIg 2009-08-15 10:13

>>16 There is no trolling:
Notepad2 is excellent editor. Never crashes,includes syntax-highlighting and brace matching.
Anything which uses makefiles is defective Sepples-level shit.
All the C code posts on my blog are void.h merged with somefile.c



_______________________________
http://xs135.xs.to/xs135/09042/av922.jpg
Velox Et Astrum gamedev forum: http://etastrum.phpbb3now.com
On a given day, a given circumstance, you think you have a limit. And you then go for this limit and you touch this limit, and you think, 'Okay, this is the limit.' As soon as you touch this limit, something happens and you suddenly can go a little bit further.

Name: =+=*=F=R=O=Z=E=N==V=O=I=D=*=+= !frozEn/KIg 2009-08-15 10:23

>>19 But you claim void.h is trolling? It just my utility header. Here is example of void.h i used(outdated ver) with DMC
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define ui unsigned int
#define ul unsigned long
#define uq unsigned long long
#define uc unsigned char
#define db double
#define ld long double
#define fl float
#define li long int
#define ir int
#define cr char
#define il inline
#define vd void
#define thisline ;printf("%d,",__LINE__); //debug scan,print number of last executed line
#define rdt(timer) ;asm volatile("rdtsc\n\t":"=A"(timer)); // unsigned long long timer
#define brol(value,shift)  ((value << shift) | (value >> (8 - shift))) //byte rotate left/right
#define getbit(byte,place) (byte&(1<<place))
#define delbit(byte,place) (byte&(0xFF^(1<<place)))

#define mainstart ir main(ir argc,cr**argv){
#define mainend ;return 0;}
//Open file for read/write( doesnt exists ->create)
FILE* file(cr*name){FILE *fp=fopen(name,"r+b");if(!fp){fp=fopen(name,"wb");};return fp;}
//write buffer to file
vd buf2file(cr*buf,ir size,cr*filename){FILE*fp=fopen(filename,"wb");fwrite(buf,1,size,fp);fclose(fp);}
//get buffer from file
cr* file2buf(cr*filename){FILE*fp=file(filename);fseek(fp,0,SEEK_END);li rsize=ftell(fp);cr* buf=(cr*)malloc(rsize);rewind(fp);
fread(buf,1,rsize,fp);fclose(fp);return buf;}
//get filesize
li file2size(cr*filename){FILE*fp=file(filename);fseek(fp,0,SEEK_END);li rsize=ftell(fp);fclose(fp);return rsize;}


______________________________
http://xs135.xs.to/xs135/09042/av922.jpg
Velox Et Astrum gamedev forum: http://etastrum.phpbb3now.com
We are all looking for emotions, basically. It's only a question of finding the way to experience them

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List