Changes in / [c02f761:43c461d]


Ignore:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    rc02f761 r43c461d  
    267267
    268268                //Configure the conpilation (Output is not relevant)
    269                 //Use the current directory as the installation target so nothing
    270                 //escapes the sandbox
     269                //Use the current directory as the installation target so nothing escapes the sandbox
    271270                //Also specify the compiler by hand
    272271                sh "./configure CXX=${compiler.cpp_cc} ${architecture} --with-backend-compiler=${compiler.cfa_cc} --prefix=${install_dir} --enable-silent-rules --quiet"
  • src/Common/Heap.cc

    rc02f761 r43c461d  
    1010// Created On       : Thu May  3 16:16:10 2018
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri May  4 17:17:59 2018
    13 // Update Count     : 27
     12// Last Modified On : Fri May  4 17:27:31 2018
     13// Update Count     : 28
    1414//
    1515
     
    145145#endif // _GNU_SOURCE
    146146
    147                 error = dlerror();
    148                 if ( error ) {
    149                         std::cerr << "interpose_symbol : internal error, " << error << std::endl;
    150                         abort();
    151                 }
    152 
    153                 return fptr;
    154         }
    155 
    156147        extern "C" {
    157148                void * malloc( size_t size ) __attribute__((malloc));
Note: See TracChangeset for help on using the changeset viewer.