Skip to content

Commit

Permalink
fix: add config.h
Browse files Browse the repository at this point in the history
  • Loading branch information
johnyob committed Jul 31, 2024
1 parent 23b2f2f commit 4bc59cb
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@

autom4te.cache
config.cache
config.h
config.intl
config.log
config.status
Expand Down
23 changes: 23 additions & 0 deletions newlib/libc/sys/hermit/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/* Name of package. */
#define PACKAGE hermitGloss

/* Version of package. */
#define VERSION 0.1

/* Using ELF format */
#define HAVE_ELF 1

/* Using GNU LD */
#define HAVE_GNU_LD 1

/* .previous directive allowed */
#define HAVE_ASM_PREVIOUS_DIRECTIVE 1

/* .pushsection/.popsection directives allowed */
#define HAVE_ASM_POPSECTION_DIRECTIVE 1

/* support for section attributes */
#define HAVE_SECTION_ATTRIBUTES 1

/* symbol prefix */
#define __SYMBOL_PREFIX ""

0 comments on commit 4bc59cb

Please sign in to comment.