This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: JIT Reader


>>>>> "Sanjoy" == Sanjoy Das <sanjoy@playingwithpointers.com> writes:

Sanjoy> This work was stalled for some time while the copyright assignment was
Sanjoy> being worked on; which will be finalized any time now.

Super.

Sanjoy> In the meantime, I've attached a rebased set of patches for final
Sanjoy> reviews.

Thanks, and sorry about the delay.  It really is best to ping weekly;
the squeaky wheel etc.

Sanjoy> +#ifdef HAVE_DLFCN_H
Sanjoy> +#include <dlfcn.h>
Sanjoy> +#elif __MINGW32__
Sanjoy> +#include <windows.h>
Sanjoy> +#else
Sanjoy> +/* Unsupported configuration.  See Eg. gdb_dlopen for details.  */
Sanjoy> +#error API to load shared library missing (Eg. libdl)
Sanjoy> +#endif

I think this should be a runtime error, not a build-time error, because
it seems better to me to make a gdb with reduced functionality than to
prevent the build for just this feature.

Tom


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]