cpp compiler in linux

A

Alexander Bartolich

muhazir said:
what application and how to use the cpp compiler in my linux,

On Linux, cpp is the C pre processor. It is automatically invoked by
the C compiler, the C++ compiler, and the assembler. You can invoke
it explicitly, though. Instructions for this are given in

man cpp
can you send me the cpp machine library for dotnet please

What exactly is a "machine library"?
And why do you ask about "dotnet" in comp.lang.c++?
 
V

Victor Bazarov

muhazir said:
what application and how to use the cpp compiler in my linux,

Please ask in te newsgroup 'comp.os.linux.development.apps'. Actually
'c++' or 'g++' might be the way to invoke your compiler, but you should
check with the Linux forum.
can you send me the cpp machine library for dotnet please

We don't do such things. For dotnet questions, try 'microsoft.public.*'
hierarchy of newsgroups.

V
 
M

muhazir

On Linux, cpp is the C pre processor. It is automatically invoked by
the C compiler, the C++ compiler, and the assembler. You can invoke
it explicitly, though. Instructions for this are given in

  man cpp


What exactly is a "machine library"?
And why do you ask about "dotnet" in comp.lang.c++?

--
Brüder, in die Tonne die Freiheit,
Brüder, ein Stoppschild davor.
Egal was die Schwarzen Verlangen
Rufen wir: Ja! Brav im Chor.

i'm trying to develove and dotnet from cpp, i'm sory for machine
library..i mean library for networking
thank's sir
 
M

muhazir

Please ask in te newsgroup 'comp.os.linux.development.apps'.  Actually
'c++' or 'g++' might be the way to invoke your compiler, but you should
check with the Linux forum.


We don't do such things.  For dotnet questions, try 'microsoft.public.*'
hierarchy of newsgroups.

V

i just want to try to develove application by using dotnet techno in
cpp under linux os
thank's for suggestion, i'll try check on the linux forum and
microsoft

thank's
muhazir
 
R

red floyd

muhazir said:
i just want to try to develove application by using dotnet techno in
cpp under linux os
thank's for suggestion, i'll try check on the linux forum and
microsoft

Google for "mono".
 
J

Jorgen Grahn

i just want to try to develove application by using dotnet techno in
cpp under linux os
thank's for suggestion, i'll try check on the linux forum and
microsoft

Like Alexander said, please try to avoid calling C++ "cpp". It is a
completely different language (typically used as the C and C++
preprocessor, but sometimes useful by itself).

(You can keep calling your C++ source code files "something.cpp" though.
Last time I heard, it was the naming convention understood by the most
compilers out there.)

/Jorgen
 
J

Juha Nieminen

Jorgen said:
(typically used as the C and C++
preprocessor, but sometimes useful by itself).

:

The C preprocessor is intended to be used only with C,
C++, and Objective-C source code. In the past, it has
been abused as a general text processor. It will choke
on input which does not obey C's lexical rules. For
example, apostrophes will be interpreted as the
beginning of character constants, and cause errors.
Also, you cannot rely on it preserving characteristics
of the input which are not significant to C-family
languages. If a Makefile is preprocessed, all the hard
tabs will be removed, and the Makefile will not work.
 
J

Jorgen Grahn

Jorgen said:
(typically used as the C and C++
preprocessor, but sometimes useful by itself).

:

The C preprocessor is intended to be used only with C,
C++, and Objective-C source code. In the past, it has
been abused as a general text processor. It will choke
on input which does not obey C's lexical rules. For
example, [...]

Yeah, that's what the Gnu people think, and it's worth pointing
out. But they cannot prevent me from using it anyway (in some
rare and pretty hackish cases, of course).

/Jorgen
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,159
Messages
2,570,879
Members
47,414
Latest member
GayleWedel

Latest Threads

Top