diff options
author | MITSUNARI Shigeo <[email protected]> | 2022-11-30 14:31:38 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2022-11-30 14:31:38 +0900 |
commit | 47ff6ef42c8d3f9f686c60408cf48819f9a2157b (patch) | |
tree | cbdcb6b796d27e5f19c71f8cc82c3ca42f9ebac9 | |
parent | 445c0dcec13abae5af795b526319ea1dc1fc74a7 (diff) | |
download | xbyak-47ff6ef42c8d3f9f686c60408cf48819f9a2157b.tar.gz xbyak-47ff6ef42c8d3f9f686c60408cf48819f9a2157b.zip |
I get an error after all on GitHub action
-rw-r--r-- | sample/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sample/Makefile b/sample/Makefile index 9166360..4c57767 100644 --- a/sample/Makefile +++ b/sample/Makefile @@ -1,7 +1,9 @@ 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) +#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 UNAME_M=$(shell uname -m) ONLY_64BIT=0 |