Tagged Questions

0
votes
3answers
50 views

what’s wrong with my makefile?

I have this project that that I compile with the following command: g++ ALE.cpp -lncurses This gives me a.out file. I have the following Makefile but it seems to not be edited c …
7
votes
7answers
1k views

Can Go compiler be installed on Windows?

I've been looking on golang.org for a Windows compiler, but I can't seem to find it. I can only see Linux and OS X compilers. Does anyone know if Go programming can be done on Wind …
11
votes
15answers
899 views

Which parser generator to teach my students?

I am teaching (with others) a relatively introductory course in computer science for IT professionals without a background in CS. Since I developed the course materials on automata …
1
vote
4answers
162 views

C++ Classes - Pointers question

I had a quiz at school and there was this question that I wasn't sure if I answered correctly. I could not find the answer in the book so I just wanted to ask you. Point* array[10 …
5
votes
4answers
658 views

what is “stack alignment”?

What is stack alignment? Why is it used? Can it be controlled by compiler settings? The details of this question are taken from a problem faced when trying to use ffmpeg librari …
6
votes
6answers
210 views

Declaring and initializing a variable in a Conditional or Control statement in C++

In Stroustrup's The C++ Programming Language: Special Edition (3rd Ed), Stroustrup writes that the declaration and initialization of variables in the conditionals of control statem …
0
votes
1answer
41 views

What are good, freely available SSA/SCCP resources?

This is what I could come up with so far: gcc related: SSA for Trees Tree SSA – A New Optimization Framework for GCC Tree SSA A New Optimization Infrastructure for GCC Design an …
1
vote
5answers
249 views

What C compilers have pointer subtraction underflows?

So, as I learned from Michael Burr's comments to this answer, the C standard doesn't support integer subtraction from pointers past the first element in an array (which I suppose i …
1
vote
4answers
208 views

Is this valid C++?

struct SomeStruct { int a; int b; }; SomeStruct someFn( int init ) { SomeStruct ret = { init, init }; //... return ret; } void someFn2( SomeStruct* pStruct ) { // .. …
5
votes
16answers
395 views

How to create a language these days?

I need to get around to writing that programming language I've been meaning to write. How do you kids do it these days? I've been out of the loop for over a decade; are you doing i …
2
votes
4answers
94 views

c++ compiler that creates object code for two different machines

Are there c++ compilers that I can run on a brand x system that will create machine code that will run on a brand y system? Would this be considered a cross compiler?
0
votes
2answers
197 views

Where can I find an interrupt list for i486-linux-gnu instruction set?

I am developing a compiler for my senior project in school, and I am using AS (GNU Assembler) to assemble. All of my tests have been fairly successful, but no interrupt lists I hav …
4
votes
4answers
184 views

What is the good approach to build a new compiler ?

I have an experience about the compiler phrases and I interested in Programming Languages & Compilers field and I hope somebody gives me some explanation about what is the good …
5
votes
10answers
773 views

Learning the source code’s filename at compile time

I'm using GCC; __FILE__ returns the current source file's entire path and name. Is there a way to get just the file's name and not its whole path too (at compile time)? Is it possi …
2
votes
8answers
335 views

How does c++ by-ref argument passing is compiled in assembly?

In the late years of college, I had a course on Compilers. We created a compiler for a subset of C. I have always wondered how a pass-by-ref function call is compiled into assembly …

1 2 3 4 next
15 30 50 per page