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

"Browse Information Not Available" Error. How can I fix it?

Hi guys,

Thanks in advance for helping me out. I am progamming on the Tiva Launchpad microcomputer, the EK-TM4C123GXL. I have a very simple project right now that blinks LEDs when I press a button. Everything was compiling and running fine until yesterday. I added another .c and .h file and it was still compiling just fine, but then I started getting this error.

"Browse Information of one or more files is not available:

.\source\termio.c

Doing a project rebuild would fix this."

termio.c is a file that initializes and has functions for uart usb communication with tera term. I added the termio.c and termio.h file to my project. Of course, rebuilding does not fix this error. I don't know what it means by browse information not available. Does anyone know how to fix this?

Thanks!

Parents
  • Make sure the Output options have "Browse Information" checked, and then do a Rebuild ALL

    This information is generated as part of the compile/linking process, it's additional information that cross-references variables, functions, files and line numbers, which is useful for the user/editor, but not particularly important to the compiler/linker, just increasing the size of files, and time to build them.

    If that doesn't work state the exact version of uVision you're using in case that's an issue.

Reply
  • Make sure the Output options have "Browse Information" checked, and then do a Rebuild ALL

    This information is generated as part of the compile/linking process, it's additional information that cross-references variables, functions, files and line numbers, which is useful for the user/editor, but not particularly important to the compiler/linker, just increasing the size of files, and time to build them.

    If that doesn't work state the exact version of uVision you're using in case that's an issue.

Children