Click here to Skip to main content
15,900,461 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am trying to compile a ultimate++ project in its own ide(theide). i used vs2010 compilor. but it makes an error.can anyone help me? sorry for my english.

----- CtrlLib ( GUI SSE2 NOGTK USEMALLOC MSC10 DEBUG DEBUG_FULL BLITZ WIN32 MSC ) (1 / 9)
BLITZ: LabelBase.cpp Button.cpp Switch.cpp EditField.cpp Text.cpp LineEdit.cpp DocEdit.cpp ScrollBar.cpp HeaderCtrl.cpp ArrayCtrl.cpp MultiButton.cpp PopupTable.cpp
DropList.cpp DropChoice.cpp Static.cpp Splitter.cpp FrameSplitter.cpp SliderCtrl.cpp ColumnList.cpp Progress.cpp AKeys.cpp RichTextView.cpp Prompt.cpp Help.cpp D
ateTimeCtrl.cpp Bar.cpp MenuItem.cpp MenuBar.cpp ToolButton.cpp ToolBar.cpp ToolTip.cpp StatusBar.cpp TabCtrl.cpp TreeCtrl.cpp DropTree.cpp DlgColor.cpp ColorPop
up.cpp ColorPusher.cpp FileList.cpp FileSel.cpp FileSelUtil.cpp PrinterJob.cpp Windows.cpp Win32.cpp TrayIconWin32.cpp TrayIconX11.cpp Update.cpp CtrlUtil.cpp LN
GCtrl.cpp Ch.cpp
ChWin32.cpp
D:\Program Files (x86)\Upp\upp\uppsrc\Core/Core.h(40) : fatal error C1083: Cannot open include file: 'typeinfo': No such file or directory
$blitz.cpp
D:\Program Files (x86)\Upp\upp\uppsrc\Core/Core.h(40) : fatal error C1083: Cannot open include file: 'typeinfo': No such file or directory
D:\Program Files (x86)\Upp\upp\uppsrc\Core/Core.h(40) : fatal error C1083: Cannot open include file: 'typeinfo': No such file or directory
ChGtk0.cpp
D:\Program Files (x86)\Upp\upp\uppsrc\Core/Core.h(40) : fatal error C1083: Cannot open include file: 'typeinfo': No such file or directory
ChGtk.cpp
CtrlLib.icpp
D:\Program Files (x86)\Upp\upp\uppsrc\Core/Core.h(40) : fatal error C1083: Cannot open include file: 'typeinfo': No such file or directory
CtrlLib: 54 file(s) built in (0:00.14), 2 msecs / file, duration = 265 msecs, parallelization 93%

There were errors. (0:00.26)
Posted
Comments
Richard MacCutchan 17-Mar-13 4:30am    
D:\Program Files (x86)\Upp\upp\uppsrc\Core/Core.h(40) : fatal error C1083: Cannot open include file: 'typeinfo': No such file or directory

This message explains what is missing. Find out where this file is and add its directory to your include list.

1 solution

Your project is unable to find the file typeinfo which is part of the C++ standard library. You need to correct the project include folder settings in your IDE so that it can find the standard library headers.
Unfortunately without knowing your exact system and setup I can't say for sure where these headers are or help you much finding the right set if you have several installed. If you are using Microsoft MSVC10 compiler under your IDE then you'll be wanting to get the IDE to look somewhere similar to C:\Program Files\Microsoft Visual Studio 10.0\VC\include
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900