mirror of
https://github.com/herumi/xbyak
synced 2024-11-20 16:06:14 -07:00
fix detection of boost
This commit is contained in:
parent
b5ac7b0f0a
commit
62be84cc87
1 changed files with 1 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue