1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- CFLAGS-libos = -L../../../build/libos -I../../include
- special_executables = bootstrap_static bootstrap_pie
- c_executables = $(filter-out $(special_executables),$(patsubst %.c,%,$(wildcard *.c)))
- cxx_executables = $(patsubst %.cpp,%,$(wildcard *.cpp))
- exec_target = $(special_executables) $(c_executables) $(cxx_executables)
- target = $(exec_target) manifest
- clean-extra += clean-tmp
- default: all
- level = ../
- include ../Makefile
- ifeq ($(SYS),x86_64-linux-gnu)
- $(c_executables): %: %.c
- @echo [ $@ ]
- @$(CC) $(CFLAGS) $(if $(findstring .libos,$@),$(CFLAGS-libos),) -o $@ $< \
- $(shell echo $@ | sed 's/^[^\.]*//g' | sed 's/\./ -l/g')
- $(cxx_executables): %: %.cpp
- @echo [ $@ ]
- @$(CC) $(CFLAGS) -o $@ $< \
- $(shell echo $@ | sed 's/^[^\.]*//g' | sed 's/\./ -l/g')
- bootstrap_static: %: %.c
- @echo [ $@ ]
- @$(CC) $(CFLAGS) -o $@ -static $< \
- $(shell echo $@ | sed 's/^[^\.]*//g' | sed 's/\./ -l/g')
- bootstrap_pie: %: %.c
- @echo [ $@ ]
- @$(CC) $(CFLAGS) -fPIC --pie -o $@ $< \
- $(shell echo $@ | sed 's/^[^\.]*//g' | sed 's/\./ -l/g')
- .PHONY: pack
- pack: $(special_executables) $(c_executables) $(cxx_executables)
- @../../../../Scripts/pack_binaries.sh test $^
- else
- $(special_executables) $(c_executables) $(cxx_executables): .packed/test.tar.gz
- tar -xmozf $< $@
- endif
- PYTHONENV="PYTHONPATH=../../../../Scripts"
- ifeq ($(SGX_RUN),1)
- PYTHONENV += "TIMEOUT=5000"
- endif
- regression: $(target)
- @echo "\n\nBasic Bootstrapping:"
- @for f in $(wildcard 00_*.py); do env $(PYTHONENV) python $$f $(RUNTIME)/pal-$(PAL_HOST); done
- @echo "\n\nFutex Support:"
- @for f in $(wildcard 30_*.py); do env $(PYTHONENV) python $$f $(RUNTIME)/pal-$(PAL_HOST); done
- @echo "\n\nLarge File Support:"
- @for f in $(wildcard 90_*.py); do env $(PYTHONENV) python $$f $(RUNTIME)/pal-$(PAL_HOST); done
- @echo "\n\nLTP tests for system calls:"
- ../apps/ltp/syscalls.sh
- clean-tmp:
- rm -rf *.tmp ../apps/ltp/*.csv *.cached *.manifest.sgx *~ *.sig *.token
|