fix for handling of suffixes in emcc
This commit is contained in:
Родитель
bbacca6867
Коммит
aebbf2a994
9
emcc
9
emcc
|
@ -239,7 +239,8 @@ if EMMAKEN_CFLAGS: CC_ADDITIONAL_ARGS += EMMAKEN_CFLAGS.split(' ')
|
|||
# ---------------- Utilities ---------------
|
||||
|
||||
SOURCE_SUFFIXES = ('.c', '.cpp', '.cxx', '.cc')
|
||||
BITCODE_SUFFIXES = ('.bc', '.o', '.ll', '.a', '.dylib')
|
||||
BITCODE_SUFFIXES = ('.bc', '.o', '.a', '.dylib')
|
||||
ASSEMBLY_SUFFIXES = ('.ll',)
|
||||
|
||||
def unsuffixed(name):
|
||||
return '.'.join(name.split('.')[:-1])
|
||||
|
@ -376,7 +377,7 @@ try:
|
|||
for i in range(len(newargs)): # find input files XXX this a simple heuristic. we should really analyze based on a full understanding of gcc params,
|
||||
# right now we just assume that what is left contains no more |-x OPT| things
|
||||
arg = newargs[i]
|
||||
if arg.endswith(SOURCE_SUFFIXES + BITCODE_SUFFIXES): # we already removed -o <target>, so all these should be inputs
|
||||
if arg.endswith(SOURCE_SUFFIXES + BITCODE_SUFFIXES + ASSEMBLY_SUFFIXES): # we already removed -o <target>, so all these should be inputs
|
||||
newargs[i] = ''
|
||||
if os.path.exists(arg):
|
||||
if arg.endswith(SOURCE_SUFFIXES):
|
||||
|
@ -384,7 +385,7 @@ try:
|
|||
has_source_inputs = True
|
||||
else:
|
||||
# this should be bitcode, make sure it is valid
|
||||
if arg.endswith('.ll') or shared.Building.is_bitcode(arg):
|
||||
if arg.endswith(ASSEMBLY_SUFFIXES) or shared.Building.is_bitcode(arg):
|
||||
input_files.append(arg)
|
||||
else:
|
||||
print >> sys.stderr, 'emcc: %s: warning: Not valid LLVM bitcode' % arg
|
||||
|
@ -436,7 +437,7 @@ try:
|
|||
print >> sys.stderr, 'emcc: compiler frontend failed to generate LLVM bitcode, halting'
|
||||
sys.exit(1)
|
||||
else: # bitcode
|
||||
if input_file.endswith(('.bc', '.o')):
|
||||
if input_file.endswith(BITCODE_SUFFIXES):
|
||||
if DEBUG: print >> sys.stderr, 'emcc: copying bitcode file: ', input_file
|
||||
shutil.copyfile(input_file, in_temp(unsuffixed_basename(input_file) + '.o'))
|
||||
else: #.ll
|
||||
|
|
|
@ -4370,9 +4370,6 @@ def process(filename):
|
|||
|
||||
poppler = self.get_library('poppler',
|
||||
[os.path.join('poppler', '.libs', self.get_shared_library_name('libpoppler.so.13')),
|
||||
os.path.join('goo', '.libs', 'libgoo.a'),
|
||||
os.path.join('fofi', '.libs', 'libfofi.a'),
|
||||
os.path.join('splash', '.libs', 'libsplash.a'),
|
||||
os.path.join('utils', 'pdftoppm.o'),
|
||||
os.path.join('utils', 'parseargs.o')],
|
||||
configure_args=['--disable-libjpeg', '--disable-libpng', '--disable-poppler-qt', '--disable-poppler-qt4', '--disable-cms'])
|
||||
|
|
Загрузка…
Ссылка в новой задаче