Hi
I'm using Dev-C++ with wxWindows but i can't change PATH (because I'm using NT Workstation). I went and changed all the relative paths in the wxWindows files to absolute paths which helped a bit - now i'm just stuck with "undefined reference" errors. They follow the form : "//c/wx2/include/wx/msw/font.h(.text$_$_14wxMenuItemList+0x14): undefined reference to `wxListBase::~wxListBase(void)'
//c/wx2/include/wx/msw/font.h(.text$Find__C14wxMenuItemListRC9wxListKey+0x15): undefined reference to `wxListBase::Find(wxListKey const &) const'" ..etc
Can anyone help please?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
libraries missing: paths, -l... in compiler option
GCC 3.2 not binary compatible
Patrick
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2003-01-09
In NT workstation, right-click My Computer, select Properties..., select the Environment tab, and set the path there.
There are two sections - one applies to all user profiles, and can only be changed if you have admin rights, and the other is local to the current profile, and can be changed by the current user.
If you create a path variable in the current user environment, it will be appended to the global one.
Any console windows that are open when you set the environment will not get the new environment. You need to close and re-open.
In fact if you create an autoexec.bat file with a path spec in that NT will read it and set the environment on startup, just like DOS, but the above method is better - no need to re-boot.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
By the way: What version of wxWindows are you using? Only asking because I first used a precompiled version (2.2.9) and in the end it didn't offer all functionality. Download 2.4.0, configure and compile it yourself to be sure everything is there.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi
I'm using Dev-C++ with wxWindows but i can't change PATH (because I'm using NT Workstation). I went and changed all the relative paths in the wxWindows files to absolute paths which helped a bit - now i'm just stuck with "undefined reference" errors. They follow the form : "//c/wx2/include/wx/msw/font.h(.text$_$_14wxMenuItemList+0x14): undefined reference to `wxListBase::~wxListBase(void)'
//c/wx2/include/wx/msw/font.h(.text$Find__C14wxMenuItemListRC9wxListKey+0x15): undefined reference to `wxListBase::Find(wxListKey const &) const'" ..etc
Can anyone help please?
libraries missing: paths, -l... in compiler option
GCC 3.2 not binary compatible
Patrick
In NT workstation, right-click My Computer, select Properties..., select the Environment tab, and set the path there.
There are two sections - one applies to all user profiles, and can only be changed if you have admin rights, and the other is local to the current profile, and can be changed by the current user.
If you create a path variable in the current user environment, it will be appended to the global one.
Any console windows that are open when you set the environment will not get the new environment. You need to close and re-open.
In fact if you create an autoexec.bat file with a path spec in that NT will read it and set the environment on startup, just like DOS, but the above method is better - no need to re-boot.
By the way: What version of wxWindows are you using? Only asking because I first used a precompiled version (2.2.9) and in the end it didn't offer all functionality. Download 2.4.0, configure and compile it yourself to be sure everything is there.