mirror of https://github.com/YosysHQ/yosys.git
haiku: Basic fixes to build under Haiku
This commit is contained in:
parent
b08688f711
commit
2f514487cb
5
Makefile
5
Makefile
|
@ -143,6 +143,11 @@ LIBS += -lrt
|
|||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(OS), Haiku)
|
||||
# Allow usage of non-posix vasprintf, mkstemps functions
|
||||
CXXFLAGS += -D_DEFAULT_SOURCE
|
||||
endif
|
||||
|
||||
YOSYS_VER := 0.43+3
|
||||
|
||||
# Note: We arrange for .gitcommit to contain the (short) commit hash in
|
||||
|
|
|
@ -967,7 +967,7 @@ std::string proc_self_dirname()
|
|||
{
|
||||
return "/";
|
||||
}
|
||||
#elif defined(__OpenBSD__)
|
||||
#elif defined(__OpenBSD__) || defined(__HAIKU__)
|
||||
char yosys_path[PATH_MAX];
|
||||
char *yosys_argv0;
|
||||
|
||||
|
|
Loading…
Reference in New Issue