- Timestamp:
- Feb 22, 2006, 3:55:20 AM (19 years ago)
- Location:
- branches/shared_lib/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/shared_lib/src/Makefile.am
r7188 r7190 12 12 13 13 orxonox_CPPFLAGS = -DIS_ORXONOX -DPKG_LIBDIR="\"$(pkglibdir)\"" 14 orxonox_LDFLAGS = 14 orxonox_LDFLAGS = --export-dynamic 15 15 ##-ldl -rdynamic 16 16 -
branches/shared_lib/src/orxonox.cc
r7187 r7190 338 338 /// FIXME make this more modular (search for himself for all the libraries 339 339 printf("%s\n", DynamicLoader::getSearchDir()); 340 DynamicLoader::loadDyLib("libORXplayables ");341 DynamicLoader::loadDyLib("libORXweapons ");342 DynamicLoader::loadDyLib("libORXprojectiles ");343 DynamicLoader::loadDyLib("libORXpower_ups ");344 345 DynamicLoader::loadDyLib("libORXenvironmentals ");340 DynamicLoader::loadDyLib("libORXplayables.la"); 341 DynamicLoader::loadDyLib("libORXweapons.la"); 342 DynamicLoader::loadDyLib("libORXprojectiles.la"); 343 DynamicLoader::loadDyLib("libORXpower_ups.la"); 344 345 DynamicLoader::loadDyLib("libORXenvironmentals.la"); 346 346 347 347 DynamicLoader::loadDyLib("libORXnpcs"); -
branches/shared_lib/src/util/loading/dynamic_loader.cc
r7177 r7190 65 65 DynamicLoader::initialize(); 66 66 67 this->handle = lt_dlopen ext(&libName[0]);67 this->handle = lt_dlopen(&libName[0]); 68 68 if(this->handle == NULL) 69 69 { … … 77 77 78 78 void* handle; 79 handle = lt_dlopen ext(libName);79 handle = lt_dlopen(libName); 80 80 if(handle == NULL) 81 81 { -
branches/shared_lib/src/world_entities/Makefile.am
r7181 r7190 40 40 $(WRONG_SORTED_SOURCES_) 41 41 42 LD _FLAGS = --export-dynamic42 LDFLAGS = --export-dynamic -module 43 43 44 44 pkglib_LTLIBRARIES = \
Note: See TracChangeset
for help on using the changeset viewer.