Compile

Page 2 - Forum discussion tagged with Compile.
  1. G

    I can't compile my CUDA code

    Hello, I've made some code on cuda and I have one single compilation error: " ParalelComplexity.h(14): error: invalid redeclaration of type name "Complexo" (14): here" This is a header file, where I have the class "Complexo". The compiler says that it is redifined, but I've already changed to...
  2. A

    C++ Sudoku program won't compile properly in GCC

    Hi, This is not a schoolwork assignment, I'm just learning/practicing C++. I am making a sudoku program/app/game and so far it's working great (it's a WIP so it doesn't generate the puzzles yet). I am trying to use SFML to make a GUI but was having issues with the VS compiler so I'm switching...
  3. M

    C language 64 bit for windows 7 free download

    i want c software for 64 bit windows 7 system,and compiler.how i can instale my system
  4. H

    Download c++ compiler for 64 bit windows 7

    :sweat:
  5. The Stealthinator

    Best python compiler

    What is the best .py to standalone .exe compiler for python?
  6. G

    Compile .vb into .exe?

    I made a progam in Visual Basic Express 2010, but then I realized I didn't know how to compile it into an .exe file. This is my very first program. I don't know if the Express can compile it. If not, is there a free program out there that will?
  7. logox

    C++

    I am planning on learning C++ and am wondering what book to get to learn it ? Also what compiler ?
  8. zerovit

    Help with gcc compiler

    Hi, i'm a total newbie on programming with zero background on it I'm currently studying C language now, my problem is How do i set the gcc directory the default is C:\users\name so i need to put my .c files in that directory, i want it to be in my desktop second problem is cmd...
  9. CDdude55

    Can't get basic C++ program to run.

    Trying to learn C++ and starting by doing the basic Hello World program. But it doesn't run, it's very basic obviously: #include <iostream> using namespace std; int main () { cout << "Hello World!"; return 0; } I'm using Code Lite as my IDE and ive trying running with with both the GNU...
  10. F

    C/C++ Compiler for Win7

    Hello, I wanted a compiler for C/C++ that will allow me to include graphics.h. The older versions like Borland and Turbo dont run in full screen mode. I have a newer version of Borland but it doesnt support graphics.h . Plz help.
  11. G

    Mozilla Pitches New Developer Language Rust

    Mozilla has released version 0.1 of its Rust compiler and programming tools. Mozilla Pitches New Developer Language Rust : Read more
  12. C

    Download c++ compiler for 64 bit windows 7

    plz i need c++ compiler for 64 bit (OS) window 7
  13. shuin_exe

    C++ Compiler Free?

    Anyone know a C++ compiler free software? hmm. . .
  14. mactronix

    C++ Text Editer/Compiler

    Hi, My daughter is interested in doing some C++ work, So a friend had a C++ book which they leant her but then she phones me and says C++ is out of date and wont work ? Now my understanding of programing is pretty close to Zero but i was of the opinion that if she typed it right it would...
  15. Cyberbustered

    Help With JAVA

    :bounce: Hi, I'm taring to work on JAVA at home, but I cant compile it. The SciTe additor gives me this message: >javac Bookseller.java>The system cannot find the file specified. Please help me to make it work. I heard that the path might be a problem. but i dont know how to change it...
  16. G

    Compiler C 64 bit Win 7 64 bit

    Hello, I'm looking for a good C++ compiler to be an alternative to the microsoft compiler. It should make programs that can run on win 7 64 bit and produce programs that can also run on win 7 64 bit. Which is easiest to use and learn and has good support? Open CL,Direct Compute, CUDA, or other?
  17. A

    Windows 7 and assembler

    Hey guys! I am trying to find a way to program and compile some assembler code in windows 7 64 bit, BUT it seems that the 'debug' command has been removed, and 'tasm, and 'nasm' won't work with a 64 bit version of windows. Anyone have a easy-how-to guide or something on how to do assembler...
  18. sayantan

    C++ compiler for windows 7

    does anyone know where do I get a C++ compiler for windows 7 x64 ??I had turboC++ v4.5 which worked fine with win xp sp2 x86 but this version doesn't work with win7 x64!!I have also changed the compatibly mode to xp for the installer but the compiler won't install at all!!!!So please tell me...
  19. H

    Download Feature May Come to Youtube

    For those of you that like to compile collections of funny or other important videos from the widely popular YouTube service, you could be in for change. Change for the better. Download Feature May Come to Youtube : Read more
  20. tokyotech

    C++ 2D arrays

    I have two questions about arrays. 1) I created an array with [][] and passed it into a function expecting **. I got an error saying: cannot convert parameter 1 from 'gfx::Vec3f [800][600]' to 'gfx::Vec3f **. I thought [][] and ** are the same thing! 2) I tried doing "Vec3f...