Re: [pygccxml-development] Problems with long filename
Brought to you by:
mbaas,
roman_yakovenko
|
From: Roman Y. <rom...@gm...> - 2007-03-09 09:20:59
|
On 3/9/07, Birgir Sigurjonsson <Bir...@ro...> wrote:
> Hei , I am using Py++ to expose the following.
>
> class AbstractLoader : private boost::noncopyable {
> public:
>
> AbstractLoader();
> virtual ~AbstractLoader();
>
> std::vector < std::string > extensions() const;
>
> private:
> virtual std::vector < std::string > extensions_impl() const = 0;
> };
>
> I want to use the module_builder_t.split_module
> but I am getting the following error message.
>
> IOError: [Errno 36] File name too long: u'splitted/vector_less_std_scope_basic_string_less_char_comma__std_scope_char_traits_less_char_grate__comma__std_scope_allocator_less_char_grate___grate__comma_std_scope_allocator_less_std_scope_basic_string_less_char_comma__std_scope_char_traits_less_char_grate__comma__std_scope_allocator_less_char_grate___grate___grate___grate_.pypp.hpp'
>
> How can I tell Py++ not to autogenerate so long names?
Take a look on this "how to":
http://language-binding.net/pyplusplus/documentation/how_to.html#py-generated-file-name-is-too-long
After it you I think you would like to read this:
http://language-binding.net/pyplusplus/documentation/hints.html
Does it help?
--
Roman Yakovenko
C++ Python language binding
http://www.language-binding.net/
|