diff options
Diffstat (limited to 'sample/Makefile')
-rw-r--r-- | sample/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sample/Makefile b/sample/Makefile index 4c57767..9166360 100644 --- a/sample/Makefile +++ b/sample/Makefile @@ -1,9 +1,7 @@ XBYAK_INC=../xbyak/xbyak.h CXX?=g++ -#BOOST_EXIST=$(shell echo "#include <boost/spirit/core.hpp>" | $(CXX) -x c++ -c - 2>/dev/null && echo 1) -# I don't know why the above code causes an error on GitHub action. -BOOST_EXIST?=0 +BOOST_EXIST=$(shell echo "#include <boost/spirit/core.hpp>" | $(CXX) -x c++ -c - 2>/dev/null && echo 1) UNAME_M=$(shell uname -m) ONLY_64BIT=0 |