Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

capstone: add 5.0.3 version #5474

Merged
merged 8 commits into from
Oct 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 25 additions & 13 deletions packages/c/capstone/xmake.lua
Original file line number Diff line number Diff line change
@@ -1,27 +1,39 @@
package("capstone")
set_homepage("http://www.capstone-engine.org")
set_description("Disassembly framework with the target of becoming the ultimate disasm engine for binary analysis and reversing in the security community.")
add_urls("https://github.com/aquynh/capstone/archive/$(version).tar.gz")
set_description("Capstone disassembly/disassembler framework for ARM, ARM64 (ARMv8), Alpha, BPF, Ethereum VM, HPPA, LoongArch, M68K, M680X, Mips, MOS65XX, PPC, RISC-V(rv32G/rv64G), SH, Sparc, SystemZ, TMS320C64X, TriCore, Webassembly, XCore and X86.")
set_license("BSD-3-Clause")

add_urls("https://github.com/capstone-engine/capstone/archive/refs/tags/$(version).tar.gz",
"https://github.com/capstone-engine/capstone.git")

add_versions("5.0.3", "3970c63ca1f8755f2c8e69b41432b710ff634f1b45ee4e5351defec4ec8e1753")

add_versions("4.0.2", "7c81d798022f81e7507f1a60d6817f63aa76e489aa4e7055255f21a22f5e526a")
add_deps("cmake")

on_load(function (package)
on_install("!iphoneos", function (package)
package:addenv("PATH", "bin")
end)

on_install("windows", "linux", "macosx", "iphoneos", "mingw", "android", "msys", "bsd", function (package)
local configs = {"-DCAPSTONE_BUILD_CSTOOL=ON", "-DCAPSTONE_BUILD_TESTS=OFF"}
table.insert(configs, "-DCAPSTONE_BUILD_STATIC=" .. (package:config("shared") and "OFF" or "ON"))
table.insert(configs, "-DCAPSTONE_BUILD_SHARED=" .. (package:config("shared") and "ON" or "OFF"))
io.gsub("CMakeLists.txt", "CAPSTONE_BUILD_SHARED AND CAPSTONE_BUILD_CSTOOL", "CAPSTONE_BUILD_CSTOOL")
local configs = {
"-DCAPSTONE_BUILD_CSTOOL=ON",
"-DCAPSTONE_BUILD_STATIC_RUNTIME=OFF", -- Use our pass CMAKE_MSVC_RUNTIME_LIBRARY
"-DCAPSTONE_BUILD_LEGACY_TESTS=OFF",
"-DCAPSTONE_BUILD_TESTS=OFF",
}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
table.insert(configs, "-DENABLE_ASAN=" .. (package:config("asan") and "ON" or "OFF"))
import("package.tools.cmake").install(package, configs)
os.cp("include", package:installdir())

if package:is_plat("windows") and package:is_debug() then
local dir = package:installdir(package:config("shared") and "bin" or "lib")
os.trycp(path.join(package:buildir(), "capstone.pdb"), dir)
os.trycp(path.join(package:buildir(), "cstool.pdb"), package:installdir("bin"))
end
end)

on_test(function (package)
if package:is_plat(os.host()) then
if not package:is_cross() then
os.vrun("cstool -v")
end
assert(package:has_cfuncs("cs_version", {includes = "capstone/capstone.h"}))
Copy link
Contributor

@luadebug luadebug Oct 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

    on_test(function (package)
        if not package:is_cross() then
            os.vrun("cstool -v")
        end
        assert(package:check_csnippets({test = [[
      //code comes from https://www.capstone-engine.org/lang_c.html
      #include <stdio.h>
      #include <inttypes.h>
      #include <capstone/capstone.h>
      #define CODE "\\x55\\x48\\x8b\\x05\\xb8\\x13\\x00\\x00"
      void test()
      {
        csh handle;
        cs_insn *insn;
        size_t count;
        cs_open(CS_ARCH_X86, CS_MODE_64, &handle);
        count = cs_disasm(handle, CODE, sizeof(CODE)-1, 0x1000, 0, &insn);
        if (count > 0) {
          size_t j;
          for (j = 0; j < count; j++) {
            printf("0x%"PRIx64":\\t%s\\t\\t%s\\n", insn[j].address, insn[j].mnemonic,insn[j].op_str);
          }
          cs_free(insn, count);
        } else
          printf("ERROR: Failed to disassemble given code!\\n");
        cs_close(&handle);
      }
        ]]}, {configs = {languages = "c11"}}))
        assert(package:has_cfuncs("cs_version", {includes = "capstone/capstone.h"}))
    end)

//code comes from https://www.capstone-engine.org/lang_c.html

add test if you want to.

end)
end)
Loading