From: David C. <unc...@un...> - 2005-05-16 21:19:16
|
I get these link errors when I try to build the visual app. With the way the names are mangled, I can't tell what files I should be looking for to add to the projects. __ZN5boost9call_onceEPFvvER22_opaque_pthread_once_t __ZNSt11char_traitsIhE11eq_int_typeERKmS2_ __ZNSt11char_traitsIhE11to_int_typeERKh __ZNSt11char_traitsIhE12to_char_typeERKm __ZNSt11char_traitsIhE2eqERKhS2_ __ZNSt11char_traitsIhE3eofEv __ZNSt11char_traitsIhE4copyEPhPKhm __ZNSt11char_traitsIhE6assignERhRKh __ZNSt11char_traitsIhE7not_eofERKm -- David Catmull unc...@un... http://www.uncommonplace.com/ |
From: Foster T. B. <fbr...@ad...> - 2005-05-16 23:04:12
|
The first is in boost/libs/thread/src/once.cpp, but should be included by the boost_lib project. The latter are standard library functions, most included by <string> Blessings, Foster On May 16, 2005, at 01:55p, David Catmull wrote: > I get these link errors when I try to build the visual app. With the > way the names are mangled, I can't tell what files I should be looking > for to add to the projects. > > __ZN5boost9call_onceEPFvvER22_opaque_pthread_once_t > __ZNSt11char_traitsIhE11eq_int_typeERKmS2_ > __ZNSt11char_traitsIhE11to_int_typeERKh > __ZNSt11char_traitsIhE12to_char_typeERKm > __ZNSt11char_traitsIhE2eqERKhS2_ > __ZNSt11char_traitsIhE3eofEv > __ZNSt11char_traitsIhE4copyEPhPKhm > __ZNSt11char_traitsIhE6assignERhRKh > __ZNSt11char_traitsIhE7not_eofERKm > > > -- > David Catmull > unc...@un... > http://www.uncommonplace.com/ > > > > ------------------------------------------------------- > This SF.Net email is sponsored by Oracle Space Sweepstakes > Want to be the first software developer in space? > Enter now for the Oracle Space Sweepstakes! > http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click > _______________________________________________ > Adobe-source-devel mailing list > Ado...@li... > https://lists.sourceforge.net/lists/listinfo/adobe-source-devel > > -- Foster T. Brereton <}}}>< Romans 3:21-26 A d o b e S o f t w a r e T e c h n o l o g y L a b "What 99 percent of programmers need to know is not how to build components but how to use them." -- Alexander Stepanov |
From: David C. <unc...@un...> - 2005-05-17 00:17:32
|
I've tried rebuilding all the libraries, but I can't figure out how to make these link errors go away. Here's the current list of errors: __ZNSt11char_traitsIhE11eq_int_typeERKmS2_ __ZNSt11char_traitsIhE11to_int_typeERKh __ZNSt11char_traitsIhE12to_char_typeERKm __ZNSt11char_traitsIhE2eqERKhS2_ __ZNSt11char_traitsIhE3eofEv __ZNSt11char_traitsIhE4copyEPhPKhm __ZNSt11char_traitsIhE6assignERhRKh __ZNSt11char_traitsIhE7not_eofERKm __ZNSt15_List_node_base4hookEPS_ __ZNSt15_List_node_base6unhookEv __ZSt18_Rb_tree_decrementPSt18_Rb_tree_node_base __ZSt18_Rb_tree_incrementPSt18_Rb_tree_node_base __ZSt28_Rb_tree_rebalance_for_erasePSt18_Rb_tree_node_baseRS_ __ZSt29_Rb_tree_insert_and_rebalancebPSt18_Rb_tree_node_baseS0_RS_ __ZNSt15_List_node_base4swapERS_S0_ __ZNSt15_List_node_base7reverseEv __ZNSt15_List_node_base8transferEPS_S0_ -- David Catmull unc...@un... http://www.uncommonplace.com/ |
From: Ralph T. <ra...@gm...> - 2005-05-17 02:32:14
|
It looks like it's missing some of boost and the STL (!). Are your XCode projects including Boost.Thread? I don't know why you would be missing STL's char_traits... perhaps you're missing a specialization to a specific character type (GCC's STL only includes char and wchar_t, so if you have a std::basic_string<> of something else then you need to provide a new specialization). Sorry I can't be more help! Ralph On 5/16/05, David Catmull <unc...@un...> wrote: > I get these link errors when I try to build the visual app. With the =20 > way the names are mangled, I can't tell what files I should be =20 > looking for to add to the projects. >=20 > __ZN5boost9call_onceEPFvvER22_opaque_pthread_once_t > __ZNSt11char_traitsIhE11eq_int_typeERKmS2_ > __ZNSt11char_traitsIhE11to_int_typeERKh > __ZNSt11char_traitsIhE12to_char_typeERKm > __ZNSt11char_traitsIhE2eqERKhS2_ > __ZNSt11char_traitsIhE3eofEv > __ZNSt11char_traitsIhE4copyEPhPKhm > __ZNSt11char_traitsIhE6assignERhRKh > __ZNSt11char_traitsIhE7not_eofERKm >=20 >=20 > --=20 > David Catmull > unc...@un... > http://www.uncommonplace.com/ >=20 >=20 >=20 > ------------------------------------------------------- > This SF.Net email is sponsored by Oracle Space Sweepstakes > Want to be the first software developer in space? > Enter now for the Oracle Space Sweepstakes! > http://ads.osdn.com/?ad_id=3D7412&alloc_id=3D16344&op=3Dclick > _______________________________________________ > Adobe-source-devel mailing list > Ado...@li... > https://lists.sourceforge.net/lists/listinfo/adobe-source-devel > |
From: Sean P. <sp...@ad...> - 2005-05-17 04:44:38
|
These are all STL functions - not sure why they would be missing Rb_tree would be coming from a use of map or multimap (probably the multimap index for xstrings) - list_node would either be std::list or map/multimap. And of course, char_traits would be coming in for basic_string<>. I can't see how you would be missing these - Sean On May 16, 2005, at 5:16 PM, David Catmull wrote: > I've tried rebuilding all the libraries, but I can't figure out how to > make these link errors go away. Here's the current list of errors: > > __ZNSt11char_traitsIhE11eq_int_typeERKmS2_ > __ZNSt11char_traitsIhE11to_int_typeERKh > __ZNSt11char_traitsIhE12to_char_typeERKm > __ZNSt11char_traitsIhE2eqERKhS2_ > __ZNSt11char_traitsIhE3eofEv > __ZNSt11char_traitsIhE4copyEPhPKhm > __ZNSt11char_traitsIhE6assignERhRKh > __ZNSt11char_traitsIhE7not_eofERKm > __ZNSt15_List_node_base4hookEPS_ > __ZNSt15_List_node_base6unhookEv > __ZSt18_Rb_tree_decrementPSt18_Rb_tree_node_base > __ZSt18_Rb_tree_incrementPSt18_Rb_tree_node_base > __ZSt28_Rb_tree_rebalance_for_erasePSt18_Rb_tree_node_baseRS_ > __ZSt29_Rb_tree_insert_and_rebalancebPSt18_Rb_tree_node_baseS0_RS_ > __ZNSt15_List_node_base4swapERS_S0_ > __ZNSt15_List_node_base7reverseEv > __ZNSt15_List_node_base8transferEPS_S0_ > > -- > David Catmull > unc...@un... > http://www.uncommonplace.com/ > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by Oracle Space Sweepstakes > Want to be the first software developer in space? > Enter now for the Oracle Space Sweepstakes! > http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click > _______________________________________________ > Adobe-source-devel mailing list > Ado...@li... > https://lists.sourceforge.net/lists/listinfo/adobe-source-devel |
From: Tobias S. <tsc...@ne...> - 2005-05-24 17:57:33
|
Hello David, is this still an issue ? Usually, the gcc tools "just know" where to find their default libraries, unless explicitly told to "forget" (command line option). AFAIK the "Zero Link" feature of XCode can cause strange errors like these - are you sure it's entirely disabled ? Regards, Tobias David Catmull wrote: > I get these link errors when I try to build the visual app. With the > way the names are mangled, I can't tell what files I should be > looking for to add to the projects. > > __ZN5boost9call_onceEPFvvER22_opaque_pthread_once_t > __ZNSt11char_traitsIhE11eq_int_typeERKmS2_ > __ZNSt11char_traitsIhE11to_int_typeERKh > __ZNSt11char_traitsIhE12to_char_typeERKm > __ZNSt11char_traitsIhE2eqERKhS2_ > __ZNSt11char_traitsIhE3eofEv > __ZNSt11char_traitsIhE4copyEPhPKhm > __ZNSt11char_traitsIhE6assignERhRKh > __ZNSt11char_traitsIhE7not_eofERKm > > |
From: David C. <unc...@un...> - 2005-05-24 18:07:46
|
On May 24, 2005, at 10:57 AM, Tobias Schwinger wrote: > Hello David, > > is this still an issue ? No, it's working now. In the past few days I've been verifying that all new code still builds in XCode, and I haven't had any issues. I still need to make a project for adam_smoke. -- David Catmull unc...@un... http://www.uncommonplace.com/ |
From: Mat M. <mm...@ad...> - 2005-05-24 18:18:29
|
Some of the issues with char_traits weren't related to the build tools. We fixed a bug where the libraries tried to instantiate a string of unsigned chars. This didn't cause any problems for the compilers whose char is unsigned by default. But for gcc, whose chars are unsigned by default, this caused a link error, since vendors only provide the necessary char_traits explicit specializations for (at most) char and wchar_t. - Mat --On Tuesday, May 24, 2005 7:57 PM +0200 Tobias Schwinger <tsc...@ne...> wrote: > Hello David, > > is this still an issue ? > > Usually, the gcc tools "just know" where to find their default > libraries, unless explicitly told to "forget" (command line option). > AFAIK the "Zero Link" feature of XCode can cause strange errors > like these - are you sure it's entirely disabled ? > > Regards, > > Tobias > > David Catmull wrote: > >> I get these link errors when I try to build the visual app. With >> the way the names are mangled, I can't tell what files I should >> be looking for to add to the projects. >> >> __ZN5boost9call_onceEPFvvER22_opaque_pthread_once_t >> __ZNSt11char_traitsIhE11eq_int_typeERKmS2_ >> __ZNSt11char_traitsIhE11to_int_typeERKh >> __ZNSt11char_traitsIhE12to_char_typeERKm >> __ZNSt11char_traitsIhE2eqERKhS2_ >> __ZNSt11char_traitsIhE3eofEv >> __ZNSt11char_traitsIhE4copyEPhPKhm >> __ZNSt11char_traitsIhE6assignERhRKh >> __ZNSt11char_traitsIhE7not_eofERKm >> >> > > > > ------------------------------------------------------- > This SF.Net email is sponsored by Yahoo. > Introducing Yahoo! Search Developer Network - Create apps using > Yahoo! > Search APIs Find out how you can build Yahoo! directly into your own > Applications - visit > http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005 > _______________________________________________ > Adobe-source-devel mailing list > Ado...@li... > https://lists.sourceforge.net/lists/listinfo/adobe-source-devel > > |