2015-11-18 17:16:17 +02:00
|
|
|
# Copyright 2014-2015 Ivan Kravets <me@ikravets.com>
|
|
|
|
|
#
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
|
#
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
#
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
|
# limitations under the License.
|
2015-03-04 21:51:41 +02:00
|
|
|
|
2015-03-06 19:05:41 +02:00
|
|
|
from hashlib import md5
|
|
|
|
|
from os.path import join
|
|
|
|
|
from tempfile import gettempdir
|
2015-03-04 21:51:41 +02:00
|
|
|
|
|
|
|
|
MAX_SOURCES_LENGTH = 8000 # Windows CLI has limit with command length to 8192
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _huge_sources_hook(sources):
|
2015-03-06 19:05:41 +02:00
|
|
|
_sources = str(sources).replace("\\", "/")
|
|
|
|
|
if len(str(_sources)) < MAX_SOURCES_LENGTH:
|
2015-03-04 21:51:41 +02:00
|
|
|
return sources
|
|
|
|
|
|
2015-03-06 19:05:41 +02:00
|
|
|
tmp_file = join(gettempdir(), "pioarargs-%s" % md5(_sources).hexdigest())
|
2015-03-04 21:51:41 +02:00
|
|
|
with open(tmp_file, "w") as f:
|
2015-12-18 15:20:37 +02:00
|
|
|
# fix space in paths
|
|
|
|
|
for line in _sources.split(".o "):
|
|
|
|
|
if not line.endswith(".o"):
|
|
|
|
|
line += ".o"
|
|
|
|
|
f.write('"%s" ' % line)
|
2015-03-04 21:51:41 +02:00
|
|
|
|
2015-12-18 15:20:37 +02:00
|
|
|
return '@"%s"' % tmp_file
|
2015-03-04 21:51:41 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def exists(_):
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def generate(env):
|
|
|
|
|
|
|
|
|
|
env.Replace(
|
|
|
|
|
_huge_sources_hook=_huge_sources_hook,
|
|
|
|
|
ARCOM=env.get("ARCOM", "").replace(
|
|
|
|
|
"$SOURCES", "${_huge_sources_hook(SOURCES)}"))
|
|
|
|
|
|
|
|
|
|
return env
|