From: Ralph T. <ra...@gm...> - 2005-03-15 04:24:58
|
Hi folks, I tried using ASL on Linux/x86, with GCC 3.2.3. I couldn't link a release build of the adam tutorial (after I'd removed the call to adam_t::inspect, which is only available in debug builds), because parser_shared.o didn't know that name_t::get was inline. Changing the name_t header file which parser_shared.hpp includes fixes the problem (oddly enough a debug build compiles and links fine without the change -- maybe debug turns off inlining). I didn't see any instructions on how to make a build (perhaps I didn't look hard enough -- I ended up reading the shell script which checks the code out of boxer.corp...), so I wrote a brief list: http://www.infinite-imagination.com/software/asl/ Thanks, Ralph > c_rdiff parser_shared.hpp Index: parser_shared.hpp =================================================================== RCS file: /cvsroot/adobe-source/adobe-source/adobe/source/parser_shared.hpp,v retrieving revision 1.2 diff -r1.2 parser_shared.hpp 15c15 < #include <adobe/name_fwd.hpp> --- > #include <adobe/name.hpp> |