This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Realview C / C++

Does someone know what advantage the C++ option brings to Realview. I see in the help it mentions the Rogue Wave C++ library.

I notice that there are a number of LIB folders. ie. ARM\LIB which contains CAL.lib and CALFP.lib, is this the library used by the legacy CARM compiler?

Then I see ARM\LIB\RV30\ARMLIB is this the library used by Realview compiler? Then I see ...RV30\CPPLIB which sounds like a C++ lib?

I am just curious as to what is available as the help section doesn't seem to spell it out, if the C++ library is there can I use it, if so how?

Parents
  • 2. But I have a problem if I use file names like "abc def.map" Grep wont work so I would have to change to single word file names or use underscore.

    Put quotes around it, or do the sane thing: stay clear of blanks in filenames: tey're a pest. People using strictly only GUI tools are mostly unaware of the side effects, but trust an old commandline jockey: blanks in filenames are really more trouble than they're worth.

    3. Main question. Is there a way to make the grep independent of a project folder?

    Any external tool can be invoked with a full path, unless I'm very much mistaken. I.e. you can make the call

    d:\where\ever\it\is\grep.exe "Total R" project.map
    

    Or put a directory holding your personal collection of such tools (including grep) in the PATH once and for good --- that's what it exists for.

Reply
  • 2. But I have a problem if I use file names like "abc def.map" Grep wont work so I would have to change to single word file names or use underscore.

    Put quotes around it, or do the sane thing: stay clear of blanks in filenames: tey're a pest. People using strictly only GUI tools are mostly unaware of the side effects, but trust an old commandline jockey: blanks in filenames are really more trouble than they're worth.

    3. Main question. Is there a way to make the grep independent of a project folder?

    Any external tool can be invoked with a full path, unless I'm very much mistaken. I.e. you can make the call

    d:\where\ever\it\is\grep.exe "Total R" project.map
    

    Or put a directory holding your personal collection of such tools (including grep) in the PATH once and for good --- that's what it exists for.

Children