1
1
class AvrGdb < Formula
2
- desc "GDB lets you to see what is going on inside a program while it executes "
2
+ desc "GNU debugger for AVR 8-bit and 32-bit Microcontrollers "
3
3
homepage "https://www.gnu.org/software/gdb/"
4
-
5
- url "https://ftp.gnu.org/gnu/gdb/gdb-10.1.tar.xz"
6
- mirror "https://ftpmirror.gnu.org/gdb/gdb-10.1.tar.xz"
7
- sha256 "f82f1eceeec14a3afa2de8d9b0d3c91d5a3820e23e0a01bbb70ef9f0276b62c0"
4
+ url "https://ftp.gnu.org/gnu/gdb/gdb-15.2.tar.xz"
5
+ mirror "https://ftpmirror.gnu.org/gdb/gdb-15.2.tar.xz"
6
+ sha256 "83350ccd35b5b5a0cba6b334c41294ea968158c573940904f00b92f76345314d"
7
+ license "GPL-3.0-or-later"
8
+ head "https://sourceware.org/git/binutils-gdb.git" , branch : "master"
9
+
10
+ livecheck do
11
+ formula "gdb"
12
+ end
8
13
9
14
bottle do
10
15
root_url "https://github.com/osx-cross/homebrew-avr/releases/download/avr-gdb-10.1"
@@ -14,60 +19,49 @@ class AvrGdb < Formula
14
19
sha256 big_sur : "8768ff3f7ef4c90864a18b1dc15817adc251304b4e74ef3ff6ac3b2595e9f6af"
15
20
end
16
21
17
- depends_on "osx-cross/avr/avr-binutils"
18
-
19
-
22
+ depends_on "avr-gcc@14" => :test
23
+ depends_on "gmp"
24
+ depends_on "mpfr"
25
+
26
+ depends_on "xz" # required for lzma support
20
27
21
28
uses_from_macos "expat"
22
29
uses_from_macos "ncurses"
30
+ uses_from_macos "zlib"
23
31
24
- on_ventura :or_newer do
32
+ on_system :linux , macos : :ventura_or_newer do
25
33
depends_on "texinfo" => :build
26
34
end
27
35
28
- # Fix symbol format elf32-avr unknown in gdb
29
- patch do
30
- url "https://raw.githubusercontent.com/osx-cross/homebrew-avr/18d50ba2a168a3b90a25c96e4bc4c053df77d7dc/Patch/avr-binutils-elf-bfd-gdb-fix.patch"
31
- sha256 "7954f85d2e0f628c261bdd486df8e1a229bc5bacc6ea4a0da003913cb96543f6"
32
- end
33
-
34
36
def install
37
+ target = "avr"
35
38
args = %W[
36
- --target=avr
37
- --prefix=#{ prefix }
38
-
39
- --disable-debug
40
- --disable-dependency-tracking
41
-
39
+ --target=#{ target }
40
+ --datarootdir=#{ share } /#{ target }
41
+ --includedir=#{ include } /#{ target }
42
+ --infodir=#{ info } /#{ target }
43
+ --mandir=#{ man }
44
+ --with-lzma
45
+ --with-python=#{ Formula [ "[email protected] " ] . opt_bin } /python3.12
46
+ --with-system-zlib
42
47
--disable-binutils
43
-
44
- --disable-nls
45
- --disable-libssp
46
- --disable-install-libbfd
47
- --disable-install-libiberty
48
-
49
- --with-python=#{ Formula [ "[email protected] " ] . opt_bin } /python3.9
50
48
]
51
49
52
50
mkdir "build" do
53
- system "../configure" , *args
51
+ system "../configure" , *args , *std_configure_args
52
+ ENV . deparallelize # Error: common/version.c-stamp.tmp: No such file or directory
54
53
system "make"
55
54
56
55
# Don't install bfd or opcodes, as they are provided by binutils
57
56
system "make" , "install-gdb"
58
57
end
59
58
end
60
59
61
- def caveats
62
- <<~EOS
63
- gdb requires special privileges to access Mach ports.
64
- You will need to codesign the binary. For instructions, see:
65
-
66
- https://sourceware.org/gdb/wiki/BuildingOnDarwin
67
-
68
- On 10.12 (Sierra) or later with SIP, you need to run this:
60
+ test do
61
+ ( testpath /"test.c" ) . write "void _start(void) {}"
62
+ system "#{ Formula [ "avr-gcc@14" ] . bin } /avr-gcc" , "-g" , "-nostdlib" , "test.c"
69
63
70
- echo "set startup-with-shell off" >> ~/.gdbinit
71
- EOS
64
+ output = shell_output ( " #{ bin } /avr-gdb -batch -ex 'info address _start' a.out" )
65
+ assert_match "Symbol \" _start \" is a function at address 0x" , output
72
66
end
73
67
end
0 commit comments