mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 10:06:40 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
13 lines
454 B
C++
13 lines
454 B
C++
--- base/debug/elf_reader.cc.orig 2025-03-24 20:50:14 UTC
|
|
+++ base/debug/elf_reader.cc
|
|
@@ -49,6 +49,10 @@ constexpr char kGnuNoteName[] = "GNU";
|
|
|
|
constexpr char kGnuNoteName[] = "GNU";
|
|
|
|
+#ifndef NT_GNU_BUILD_ID
|
|
+#define NT_GNU_BUILD_ID 3
|
|
+#endif
|
|
+
|
|
// Returns a pointer to the header of the ELF binary mapped into memory, or a
|
|
// null pointer if the header is invalid. Here and below |elf_mapped_base| is a
|
|
// pointer to the start of the ELF image.
|