Skip to content
This repository was archived by the owner on Oct 27, 2025. It is now read-only.
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile.target
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ obj-$(CONFIG_QEMU_NYX) += nyx/
obj-y += memory.o
obj-y += memory_mapping.o
obj-y += migration/ram.o
LIBS := $(libs_softmmu) $(LIBS)
LIBS := $(libs_softmmu) $(LIBS) -lexecinfo

# Hardware support
ifeq ($(TARGET_NAME), sparc64)
Expand Down
2 changes: 1 addition & 1 deletion nyx/sharedir.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,4 +170,4 @@ uint64_t sharedir_request_file(sharedir_t* self, const char* file, uint8_t* page
fprintf(stderr, "WARNING: No such file in sharedir: %s\n", file);
return 0xFFFFFFFFFFFFFFFFUL;
}
}
}
1 change: 1 addition & 0 deletions nyx/sharedir.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#include <stdio.h>
#include "khash.h"
#include <stdint.h>
#include <time.h>


typedef struct sharedir_file_s{
Expand Down