Skip to content
Snippets Groups Projects
Commit 68bca163 authored by Avi Kivity's avatar Avi Kivity
Browse files

build: generate alltypes.h

The musl code contains a build time generated header; generate it.
parent e6e2f4f5
No related branches found
No related tags found
No related merge requests found
...@@ -381,6 +381,14 @@ ctype-data.h: gen-ctype-data ...@@ -381,6 +381,14 @@ ctype-data.h: gen-ctype-data
gen-ctype-data: gen-ctype-data.o gen-ctype-data: gen-ctype-data.o
$(call quiet, $(CXX) -o $@ $^, LD $@) $(call quiet, $(CXX) -o $@ $^, LD $@)
generated-headers = gen/include/bits/alltypes.h
gen/include/bits/alltypes.h: $(src)/include/api/x86_64/bits/alltypes.h.sh
$(call very-quiet, mkdir -p $(dir $@))
$(call quiet, sh $^ > $@, GEN $@)
$(src)/build.mak: $(generated-headers)
-include $(shell find -name '*.d') -include $(shell find -name '*.d')
.DELETE_ON_ERROR: .DELETE_ON_ERROR:
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment