Changeset 02559df


Ignore:
Timestamp:
Jul 29, 2018, 2:45:23 PM (6 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
Children:
a4248de1
Parents:
a8a7612
Message:

Apparently automake doesn't actually work without dependency tracking so diable them by hand in the tests instead

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    ra8a7612 r02559df  
    266266                        //Use the current directory as the installation target so nothing escapes the sandbox
    267267                        //Also specify the compiler by hand
    268                         sh "../configure CXX=${compiler.cpp_cc} ${architecture} --with-backend-compiler=${compiler.cfa_cc} --prefix=${install_dir} --enable-silent-rules --quiet --disable-dependency-tracking"
     268                        sh "../configure CXX=${compiler.cpp_cc} ${architecture} --with-backend-compiler=${compiler.cfa_cc} --prefix=${install_dir} --enable-silent-rules --quiet"
    269269
    270270                        //Compile the project
  • src/tests/test.py

    ra8a7612 r02559df  
    219219        make('clean', redirects = '> /dev/null 2>&1')
    220220
     221        # automake doesn't clean the dependencies so do it by hand
     222        sh("find %s -type d -name .deps -delete" % settings.BUIDDIR)
     223
    221224        # create the executor for our jobs and handle the signal properly
    222225        pool = setupPool(jobs)
Note: See TracChangeset for help on using the changeset viewer.