GDBUnsupported.cpp 266 B

1234567891011121314
  1. /*
  2. * Copyright (c) 2023, Jesús Lapastora <cyber.gsuscode@gmail.com>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibJIT/GDB.h>
  7. namespace JIT::GDB {
  8. Optional<FixedArray<u8>> build_gdb_image(ReadonlyBytes, StringView, StringView)
  9. {
  10. return {};
  11. }
  12. }