Skip to content

Commit

Permalink
doc(LICENSE): update year\ntools(dockerfile): add apt install\n3rd: a…
Browse files Browse the repository at this point in the history
…dd gdb

Signed-off-by: Zone.N <[email protected]>
  • Loading branch information
MRNIU committed Feb 22, 2024
1 parent 8bbefef commit 3f95fb7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ RUN DEBIAN_FRONTEND=noninteractive \
make \
cmake \
clang-format \
clang-tidy \
cppcheck \
qemu-system \
build-essential \
binutils \
Expand Down
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 Simple-XX
Copyright (c) 2018-2024 Simple-XX

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -22,7 +22,7 @@ SOFTWARE.

----------

Copyright (c) 2019 Simple-XX
Copyright (c) 2018-2024 Simple-XX

Anti 996 License Version 1.0 (Draft)

Expand Down
7 changes: 7 additions & 0 deletions cmake/3rd.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,13 @@ add_custom_target(3rd_licenses
write-licenses
)

# gdb
find_program(GDB_EXE gdb)
if (NOT GDB_EXE)
message(FATAL_ERROR "gdb not found.\n"
"Following https://www.sourceware.org/gdb/ to install.")
endif ()

# qemu
find_program(QEMU_EXE qemu-system-${TARGET_ARCH})
if (NOT QEMU_EXE)
Expand Down

0 comments on commit 3f95fb7

Please sign in to comment.