Intel® C++ Compiler
Community support and assistance for creating C++ code that runs on platforms based on Intel® processors.

help me...

chryne
Beginner
257 Views
kindly help me in making a simple compiler program using C++ language...
0 Kudos
2 Replies
Yang_W_Intel
Employee
257 Views
Quoting - chryne
kindly help me in making a simple compiler program using C++ language...

The compiler is not a simple program... You may try to search the web for it.
0 Kudos
jimdempseyatthecove
Honored Contributor III
257 Views

You might consult Knuth's books.

I would suggest you begin with writing an interpreter. In this way you do not have to establish an object file format and then write your own linker and runtime system.

Once the interpreter is written, verifying your language constructs, then you can work on the other components (object file format, linker, runtime system, libraries,...) that typically accompany a compiler.

I would have to guess your request is for a CS project.

Jim Dempsey
0 Kudos
Reply