mirror of
https://github.com/zebrajr/node.git
synced 2025-12-07 00:20:38 +01:00
build: make CC command in host check configurable
This commit is contained in:
parent
c97b4f1971
commit
707863c1fb
3
configure
vendored
3
configure
vendored
|
|
@ -147,8 +147,7 @@ def pkg_config(pkg):
|
|||
def host_arch():
|
||||
"""Host architecture. One of arm, ia32 or x64."""
|
||||
|
||||
# TODO better/configurable way of getting the proper 'cc' command?
|
||||
cc = [ 'cc' ]
|
||||
cc = [os.environ.get('CC', 'cc')]
|
||||
|
||||
cmd = cc + [ '-dM', '-E', '-' ]
|
||||
p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user