Most voted "compilation" questions
Compilation is the process of producing information, typically a program to be run by a computer, from a source (or sources) being typically text in a computer programming language. DO NOT USE this tag for build errors. It should be used for the process.
Learn more…168 questions
Sort by count of
-
-1
votes2
answers1757
viewsHow to convert . Ino(Arduino) code to . Hex?
How to convert my Arduino code (.Ino) to .hex. I don’t want to use the IDE (Arduin). There is a way to do this?
-
-1
votes2
answers507
viewsDoubts about the compilation and "linkage" phase of a C-Program
I have some questions about the steps used to compile a program in C. I have as source of study the book of Luis Damas (I know it is not advisable to have only one...), where he says that the…
-
-1
votes1
answer286
viewsIs it possible to compile C/C++ from Windows/Linux for Macos?
In a hypothetical environment where I don’t have the system or how to emulate, would it be possible to compile an application in c++? (properly compatible) I’ve already found some cross-compilers…
-
-1
votes1
answer286
viewsC/C++ libraries and preprocessing
I’ve always wondered the syntax of #include and of #define, as they differ greatly from the syntax of the rest of the language. I found that this is because these commands are intended for the…
-
-1
votes1
answer143
viewsjava build error ( javac )
I have a "poo1.java file": package pootest; public class init{ public static void main(String[] args){ Caneta bic1 = new Caneta(); bic1.cor = "azul"; bic1.tampada = true; bic1.ponta = 0.5f;…
-
-1
votes0
answers11
viewsBuild error in android studio using Kotlin
When I compile my application it does not build and from this error, how do I fix? in another application it works. java.lang.Assertionerror: annotationType(): unrecognized Attribute name MODULE…
-
-1
votes1
answer127
viewsHow to Solve C++ Visual Studio Compiler Problem?
I was trying to do a Hello World in C++ in Visual Studio, but when trying to compile and run the program no bug was displayed, only a C/C compiler error message++. I already installed Minggw, and…
-
-1
votes1
answer48
viewsMy C code compiles but is not executed
The code is as follows:: #include <stdio.h> int main(void) { int qtdDeElementos; int vetor[qtdDeElementos]; printf("Informe a quantidade de elementos do vetor: "); scanf("%i",…
-
-1
votes2
answers29
viewsError compiling R 4.1 package on Debian-based linux
I am trying to install/compile R-project software, I haven’t been succeeding. Debian-based linux distro. Follow the steps I’ve taken: 1- I downloaded the package R-4.1.1.tar. gz on the link:…
-
-2
votes2
answers177
viewsNear and Far pointer error in C code
Code compilation error in C, with Near and Far pointers #include <stdio.h> void main(void) { char *titulo_near = "Bíblia do Programador C/C++, do Jamsa!"; char far *titulo_far = "Bíblia do…
-
-2
votes2
answers45
viewsUse of cinnamon in macros
Good evening! I want to test a condition that will be implemented in the macro. The value for the test will be informed by the user. My code generates an error when compiling. What can it be? Thank…
-
-2
votes1
answer4019
viewsPq ta giving this error -> error: expected ?;' before ?)' token
I made an algorithm to determine if a number is prime or not, but when compiling it is giving this error when compiling in Ubuntu’s own terminal. #include <stdio.h> int main(){ int n, i,…
-
-2
votes1
answer34
viewsProblems compiling code in C - "[Error]: Id returned 1 Exit status"
Good afternoon guys! How are you? I’m learning codar in C as part of a college course. In the current exercise, we were asked to generate a simple program for inserting/removing records. I relied on…
-
-3
votes1
answer1059
viewsError: Unable to locate or load Olamundo main class.java
I’m trying to compile and run a "hello world" in Java from the command line. My code is: public class OlaMundo{ public static void main(String[] args){ System.out.println("Oi , funcionou"); } } I’m…
-
-3
votes1
answer908
viewsHow to generate a python executable program
I started to see programming languages at a certain time, currently I’m learning Python, Javascript and other. And would you like to know how I can generate a program independent of the interpreter?…
-
-4
votes1
answer283
viewsSublime text with Exit code 1. How to resolve
I’m with this ERROR when trying to compile any code in C in my PC: [Decode error - output not utf-8] [Finished in 0.2s with exit code 1] I installed the MinGW and the modules gcc(C++ e C), but still…
-
-5
votes2
answers2656
viewsWhat is a compiler?
What is a compiler? Could they exemplify? And what is the difference between compiler and grammar?
compilationasked 8 years, 8 months ago Roosevelt 23 -
-5
votes2
answers489
viewsCan a regular expression become Assembly?
Regular expressions are known to be character patterns that associate character sequences in the text. Would it be possible to do the same for Assembly? Make there are expressions that would…