kconfig_load.c 644 B

1234567891011121314151617181920212223242526272829303132333435
  1. #include <dlfcn.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include "lkc.h"
  5. #define P(name,type,arg) type (*name ## _p) arg
  6. #include "lkc_proto.h"
  7. #undef P
  8. void kconfig_load(void)
  9. {
  10. void *handle;
  11. char *error;
  12. handle = dlopen("./libkconfig.so", RTLD_LAZY);
  13. if (!handle) {
  14. handle = dlopen("./scripts/kconfig/libkconfig.so", RTLD_LAZY);
  15. if (!handle) {
  16. fprintf(stderr, "%s\n", dlerror());
  17. exit(1);
  18. }
  19. }
  20. #define P(name,type,arg) \
  21. { \
  22. name ## _p = dlsym(handle, #name); \
  23. if ((error = dlerror())) { \
  24. fprintf(stderr, "%s\n", error); \
  25. exit(1); \
  26. } \
  27. }
  28. #include "lkc_proto.h"
  29. #undef P
  30. }