User forums > Help

ubuntu Breezy compile error (SVN)

(1/3) > >>

Pecan:
Recently (the last number of svn updates) I've been getting a compile error in sc_dialog.cpp line 76


--- Code: ---wxXmlResource::Get()->Unload(actual);

--- End code ---

It says there is no such member as Unload.

My wx-config results are:

--- Code: ---pecan@herman:~/devel/trunk/src$ wx-config --libs
-pthread   -lwx_gtk2u_xrc-2.6 -lwx_gtk2u_qa-2.6 -lwx_gtk2u_html-2.6 -lwx_gtk2u_adv-2.6 -lwx_gtk2u_core-2.6 -lwx_baseu_xml-2.6 -lwx_baseu_net-2.6 -lwx_baseu-2.6

pecan@herman:~/devel/trunk/src$ wx-config --cflags
-I/usr/lib/wx/include/gtk2-unicode-release-2.6 -I/usr/include/wx-2.6 -DGTK_NO_CHECK_CASTS -D__WXGTK__ -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D_LARGEFILE_SOURCE=1 -DNO_GCC_PRAGMA


--- End code ---

Any suggestions?

stahta01:

--- Quote from: Pecan on January 14, 2007, 09:34:28 pm ---Recently (the last number of svn updates) I've been getting a compile error in sc_dialog.cpp line 76


--- Code: ---wxXmlResource::Get()->Unload(actual);

--- End code ---


--- End quote ---

If it is a 64 bit version of the OS then it is a known problem.

See
http://forums.codeblocks.org/index.php?topic=4930.msg38515#msg38515
Tim S

Pecan:

--- Quote from: stahta01 on January 14, 2007, 09:36:33 pm ---
--- Quote from: Pecan on January 14, 2007, 09:34:28 pm ---Recently (the last number of svn updates) I've been getting a compile error in sc_dialog.cpp line 76


--- Code: ---wxXmlResource::Get()->Unload(actual);

--- End code ---


--- End quote ---

If it is a 64 bit version of the OS then it is a known problem.

See
http://forums.codeblocks.org/index.php?topic=4930.msg38515#msg38515
Tim S

--- End quote ---

No, not 64 bit. It's the same old 300mhz 32bit Dell laptop I've been using with Ubuntu Breezy for 1.5 years now.

This error appeared in the last month.

Pecan:
RE: recent svn compilations on Ubuntu Breezy

Where does the -include sdk.h on the compiler command come from.

When -include sdk.h occurs in the command line, and the source file also contains #include sdk.h I get a fdopen err and the compilation fails.

I cannot find "-include sdk.h" in the .cbp file. Where can I turn it off?

thanks

stahta01:

--- Quote from: Pecan on January 14, 2007, 09:34:28 pm ---Recently (the last number of svn updates) I've been getting a compile error in sc_dialog.cpp line 76


--- Code: ---wxXmlResource::Get()->Unload(actual);

--- End code ---

It says there is no such member as Unload.

My wx-config results are:

--- Code: ---pecan@herman:~/devel/trunk/src$ wx-config --libs
-pthread   -lwx_gtk2u_xrc-2.6 -lwx_gtk2u_qa-2.6 -lwx_gtk2u_html-2.6 -lwx_gtk2u_adv-2.6 -lwx_gtk2u_core-2.6 -lwx_baseu_xml-2.6 -lwx_baseu_net-2.6 -lwx_baseu-2.6

pecan@herman:~/devel/trunk/src$ wx-config --cflags
-I/usr/lib/wx/include/gtk2-unicode-release-2.6 -I/usr/include/wx-2.6 -DGTK_NO_CHECK_CASTS -D__WXGTK__ -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D_LARGEFILE_SOURCE=1 -DNO_GCC_PRAGMA


--- End code ---

Any suggestions?

--- End quote ---

From the 2.6_branch include/wx/xrcxmlres.h

#if wxABI_VERSION > 20601
    // Unload resource from the given XML file (wildcards not allowed)
    bool Unload(const wxString& filename);
#endif // wxABI_VERSION

Verify that you are running 2.6.2 version or higher and no code is SETTING wxABI_VERSION by defining it yourself to
wxABI_VERSION=20602
or
wxABI_VERSION=20603

Tim S

Navigation

[0] Message Index

[#] Next page

Go to full version