Merge pull request #1181 from dl8dtl/add_em_evr_for_openbsd

Add fallback for EM_AVR
This commit is contained in:
Jörg Wunsch 2022-11-21 23:31:14 +01:00 committed by GitHub
commit 3892c5a459
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 2 deletions

View File

@ -60,7 +60,11 @@ case "${ostype}" in
fi
;;
freebsd)
netbsd)
build_flags="${build_flags} -D CMAKE_C_FLAGS=-I/usr/pkg/include -D CMAKE_EXE_LINKER_FLAGS=-L/usr/pkg/lib"
;;
*bsd)
build_flags="${build_flags} -D CMAKE_C_FLAGS=-I/usr/local/include -D CMAKE_EXE_LINKER_FLAGS=-L/usr/local/lib"
;;
esac

View File

@ -37,6 +37,9 @@
#ifndef EM_AVR32
# define EM_AVR32 0x18ad /* unofficial */
#endif
#ifndef EM_AVR
# define EM_AVR 83 /* OpenBSD lacks it */
#endif
#endif
#include "avrdude.h"

View File

@ -36,6 +36,7 @@
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/select.h>
#include <sys/socket.h>
#include <netdb.h>

View File

@ -44,6 +44,8 @@
#ifdef WIN32
#include <windows.h>
#else
#include <sys/select.h>
#endif
#endif