[b87a5ed] | 1 | // |
---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo |
---|
| 3 | // |
---|
| 4 | // The contents of this file are covered under the licence agreement in the |
---|
| 5 | // file "LICENCE" distributed with Cforall. |
---|
| 6 | // |
---|
[76c7f65e] | 7 | // cfa.cc -- |
---|
[b87a5ed] | 8 | // |
---|
[51b7345] | 9 | // Author : Peter A. Buhr |
---|
| 10 | // Created On : Tue Aug 20 13:44:49 2002 |
---|
[201aeb9] | 11 | // Last Modified By : Peter A. Buhr |
---|
[c334ecd] | 12 | // Last Modified On : Fri Jan 31 16:48:03 2020 |
---|
| 13 | // Update Count : 421 |
---|
[b87a5ed] | 14 | // |
---|
[51b7345] | 15 | |
---|
| 16 | #include <iostream> |
---|
[158b026] | 17 | #include <cstdio> // perror |
---|
| 18 | #include <cstdlib> // putenv, exit |
---|
| 19 | #include <climits> // PATH_MAX |
---|
| 20 | #include <unistd.h> // execvp |
---|
| 21 | #include <string> // STL version |
---|
| 22 | #include <string.h> // strcmp |
---|
| 23 | #include <algorithm> // find |
---|
[51b7345] | 24 | |
---|
[37fe352] | 25 | #include <sys/types.h> |
---|
| 26 | #include <sys/stat.h> |
---|
| 27 | |
---|
[44bca7f] | 28 | #include "Common/SemanticError.h" |
---|
[b87a5ed] | 29 | #include "config.h" // configure info |
---|
[51b7345] | 30 | |
---|
| 31 | using std::cerr; |
---|
| 32 | using std::endl; |
---|
| 33 | using std::string; |
---|
[47a8d17] | 34 | using std::to_string; |
---|
[51b7345] | 35 | |
---|
[81e60f7] | 36 | // #define __DEBUG_H__ |
---|
[51b7345] | 37 | |
---|
[158b026] | 38 | // "N__=" suffix |
---|
| 39 | static string __CFA_FLAGPREFIX__( "__CFA_FLAG" ); |
---|
[51b7345] | 40 | |
---|
[2c60af75] | 41 | void Putenv( char * argv[], string arg ) { |
---|
[c2051e10] | 42 | // environment variables must have unique names |
---|
| 43 | static int flags = 0; |
---|
[2c60af75] | 44 | |
---|
[0bf5340] | 45 | if ( putenv( (char *)( *new string( string( __CFA_FLAGPREFIX__ + to_string( flags++ ) + "__=" ) + arg ) ).c_str() ) ) { |
---|
[2c60af75] | 46 | cerr << argv[0] << " error, cannot set environment variable." << endl; |
---|
| 47 | exit( EXIT_FAILURE ); |
---|
| 48 | } // if |
---|
| 49 | } // Putenv |
---|
| 50 | |
---|
[c2051e10] | 51 | // check if string has prefix |
---|
[1ee048fd] | 52 | bool prefix( const string & arg, const string & pre ) { |
---|
[b87a5ed] | 53 | return arg.substr( 0, pre.size() ) == pre; |
---|
[51b7345] | 54 | } // prefix |
---|
| 55 | |
---|
[1ee048fd] | 56 | inline bool ends_with(const string & str, const string & sfix) { |
---|
| 57 | if (sfix.size() > str.size()) return false; |
---|
| 58 | return std::equal(str.rbegin(), str.rbegin() + sfix.size(), sfix.rbegin(), sfix.rend()); |
---|
| 59 | } |
---|
| 60 | |
---|
[158b026] | 61 | // check if string has suffix |
---|
| 62 | bool suffix( const string & arg ) { |
---|
[8c63bb4] | 63 | enum { NumSuffixes = 3 }; |
---|
| 64 | static const string suffixes[NumSuffixes] = { "cfa", "hfa", "ifa" }; |
---|
[dffaeac] | 65 | |
---|
| 66 | size_t dot = arg.find_last_of( "." ); |
---|
| 67 | if ( dot == string::npos ) return false; |
---|
[8c63bb4] | 68 | const string * end = suffixes + NumSuffixes; |
---|
| 69 | return std::find( suffixes, end, arg.substr( dot + 1 ) ) != end; |
---|
[dffaeac] | 70 | } // suffix |
---|
[51b7345] | 71 | |
---|
| 72 | |
---|
[2c60af75] | 73 | static inline bool dirExists( const string & path ) { // check if directory exists |
---|
[37fe352] | 74 | struct stat info; |
---|
[2c60af75] | 75 | if ( stat( path.c_str(), &info ) != 0 ) return false; |
---|
[b544afa] | 76 | return (info.st_mode & S_IFDIR) != 0; |
---|
[2c60af75] | 77 | } // dirExists |
---|
[37fe352] | 78 | |
---|
[bbfd0e0] | 79 | static inline string dir(const string & path) { |
---|
| 80 | return path.substr(0, path.find_last_of('/')); |
---|
| 81 | } |
---|
| 82 | |
---|
[158b026] | 83 | // Different path modes |
---|
| 84 | enum PathMode { |
---|
| 85 | Installed, // cfa is installed, use prefix |
---|
| 86 | BuildTree, // cfa is in the tree, use source and build tree |
---|
| 87 | Distributed // cfa is distributed, use build tree for includes and executable directory for .cfs |
---|
| 88 | }; |
---|
| 89 | |
---|
| 90 | // Get path mode from /proc |
---|
| 91 | PathMode FromProc() { |
---|
| 92 | std::string abspath; |
---|
| 93 | abspath.resize(PATH_MAX); |
---|
| 94 | |
---|
| 95 | // get executable path from /proc/self/exe |
---|
| 96 | ssize_t size = readlink("/proc/self/exe", const_cast<char*>(abspath.c_str()), abspath.size()); |
---|
| 97 | if(size <= 0) { |
---|
| 98 | std::cerr << "Error could not evaluate absolute path from /proc/self/exe" << std::endl; |
---|
| 99 | std::cerr << "Failed with " << std::strerror(errno) << std::endl; |
---|
| 100 | std::exit(1); |
---|
| 101 | } |
---|
| 102 | |
---|
| 103 | // Trim extra characters |
---|
| 104 | abspath.resize(size); |
---|
| 105 | |
---|
| 106 | // Are we installed |
---|
| 107 | if(abspath.rfind(CFA_BINDIR , 0) == 0) { return Installed; } |
---|
| 108 | |
---|
| 109 | // Is this the build tree |
---|
| 110 | if(abspath.rfind(TOP_BUILDDIR, 0) == 0) { return BuildTree; } |
---|
| 111 | |
---|
| 112 | // Does this look like distcc |
---|
| 113 | if(abspath.find("/.cfadistcc/") != std::string::npos) { return Distributed; } |
---|
| 114 | |
---|
| 115 | // None of the above? Give up since we don't know where the prelude or include directories are |
---|
| 116 | std::cerr << "Cannot find required files from excutable path " << abspath << std::endl; |
---|
| 117 | std::exit(1); |
---|
| 118 | } |
---|
| 119 | |
---|
[51b7345] | 120 | |
---|
[2c60af75] | 121 | #define xstr(s) str(s) |
---|
[4b1afb6] | 122 | #define str(s) #s |
---|
| 123 | |
---|
[8c63bb4] | 124 | int main( int argc, char * argv[] ) { |
---|
[4b1afb6] | 125 | string Version( CFA_VERSION_LONG ); // current version number from CONFIG |
---|
[2c60af75] | 126 | string Major( xstr( CFA_VERSION_MAJOR ) ), Minor( xstr( CFA_VERSION_MINOR ) ), Patch( xstr( CFA_VERSION_PATCH ) ); |
---|
[51b7345] | 127 | |
---|
[d6f4488] | 128 | string installincdir( CFA_INCDIR ); // fixed location of include files |
---|
| 129 | string installlibdir( CFA_LIBDIR ); // fixed location of cc1 and cfa-cpp commands when installed |
---|
| 130 | string srcdriverdir ( TOP_BUILDDIR "driver"); // fixed location of cc1 and cfa-cpp commands when in tree |
---|
[51b7345] | 131 | |
---|
[b87a5ed] | 132 | string heading; // banner printed at start of cfa compilation |
---|
| 133 | string arg; // current command-line argument during command-line parsing |
---|
[b544afa] | 134 | string bprefix; // path where gcc looks for compiler steps |
---|
[b87a5ed] | 135 | string langstd; // language standard |
---|
[51b7345] | 136 | |
---|
[e24f13a] | 137 | string compiler_path( CFA_BACKEND_CC ); // path/name of C compiler |
---|
[b87a5ed] | 138 | string compiler_name; // name of C compiler |
---|
[51b7345] | 139 | |
---|
[4f5a8a2] | 140 | bool x_flag = false; // -x flag |
---|
[bbb1b35] | 141 | bool nonoptarg = false; // no non-option arguments specified, i.e., no file names |
---|
| 142 | bool link = true; // link stage occurring |
---|
[b87a5ed] | 143 | bool verbose = false; // -v flag |
---|
[8c63bb4] | 144 | bool quiet = false; // -quiet flag |
---|
| 145 | bool debug = true; // -debug flag |
---|
| 146 | bool nolib = false; // -nolib flag |
---|
| 147 | bool help = false; // -help flag |
---|
[b87a5ed] | 148 | bool CFA_flag = false; // -CFA flag |
---|
| 149 | bool cpp_flag = false; // -E or -M flag, preprocessor only |
---|
[de62360d] | 150 | bool std_flag = false; // -std= flag |
---|
[d746bc8] | 151 | bool noincstd_flag = false; // -no-include-stdhdr= flag |
---|
[6e4b913] | 152 | bool debugging __attribute(( unused )) = false; // -g flag |
---|
[8c63bb4] | 153 | bool m32 = false; // -m32 flag |
---|
| 154 | bool m64 = false; // -m64 flag |
---|
[1ee048fd] | 155 | bool compiling_libs = false; |
---|
[2c60af75] | 156 | int o_file = 0; // -o filename position |
---|
[51b7345] | 157 | |
---|
[158b026] | 158 | PathMode path = FromProc(); |
---|
| 159 | |
---|
[b87a5ed] | 160 | const char *args[argc + 100]; // cfa command line values, plus some space for additional flags |
---|
| 161 | int sargs = 1; // starting location for arguments in args list |
---|
| 162 | int nargs = sargs; // number of arguments in args list; 0 => command name |
---|
[51b7345] | 163 | |
---|
[b87a5ed] | 164 | const char *libs[argc + 20]; // non-user libraries must come separately, plus some added libraries and flags |
---|
| 165 | int nlibs = 0; |
---|
[51b7345] | 166 | |
---|
[dffaeac] | 167 | #ifdef __DEBUG_H__ |
---|
[b87a5ed] | 168 | cerr << "CFA:" << endl; |
---|
[bec4d24] | 169 | for ( int i = 1; i < argc; i += 1 ) { |
---|
| 170 | cerr << "argv[" << i << "]:\"" << argv[i] << "\"" << endl; |
---|
| 171 | } // for |
---|
[dffaeac] | 172 | #endif // __DEBUG_H__ |
---|
[51b7345] | 173 | |
---|
[b87a5ed] | 174 | // process command-line arguments |
---|
[51b7345] | 175 | |
---|
[b87a5ed] | 176 | for ( int i = 1; i < argc; i += 1 ) { |
---|
| 177 | arg = argv[i]; // convert to string value |
---|
| 178 | if ( prefix( arg, "-" ) ) { |
---|
| 179 | // pass through arguments |
---|
| 180 | |
---|
| 181 | if ( arg == "-Xlinker" || arg == "-o" ) { |
---|
[2c60af75] | 182 | args[nargs++] = argv[i]; // pass argument along |
---|
[b87a5ed] | 183 | i += 1; |
---|
| 184 | if ( i == argc ) continue; // next argument available ? |
---|
[2c60af75] | 185 | args[nargs++] = argv[i]; // pass argument along |
---|
| 186 | if ( arg == "-o" ) o_file = i; // remember file |
---|
[b87a5ed] | 187 | } else if ( arg == "-XCFA" ) { // CFA pass through |
---|
| 188 | i += 1; |
---|
[c334ecd] | 189 | if ( i == argc ) continue; // next argument available ? |
---|
[2c60af75] | 190 | Putenv( argv, argv[i] ); |
---|
[b87a5ed] | 191 | |
---|
| 192 | // CFA specific arguments |
---|
| 193 | |
---|
| 194 | } else if ( arg == "-CFA" ) { |
---|
| 195 | CFA_flag = true; // strip the -CFA flag |
---|
| 196 | link = false; |
---|
[2c60af75] | 197 | args[nargs++] = "-fsyntax-only"; // stop after stage 2 |
---|
[b87a5ed] | 198 | } else if ( arg == "-debug" ) { |
---|
| 199 | debug = true; // strip the debug flag |
---|
| 200 | } else if ( arg == "-nodebug" ) { |
---|
[2c60af75] | 201 | debug = false; // strip the nodebug flag |
---|
[c9e640e] | 202 | } else if ( arg == "-nolib" ) { |
---|
| 203 | nolib = true; // strip the nodebug flag |
---|
[b87a5ed] | 204 | } else if ( arg == "-quiet" ) { |
---|
| 205 | quiet = true; // strip the quiet flag |
---|
| 206 | } else if ( arg == "-noquiet" ) { |
---|
| 207 | quiet = false; // strip the noquiet flag |
---|
| 208 | } else if ( arg == "-help" ) { |
---|
| 209 | help = true; // strip the help flag |
---|
| 210 | } else if ( arg == "-nohelp" ) { |
---|
| 211 | help = false; // strip the nohelp flag |
---|
[d746bc8] | 212 | } else if ( arg == "-no-include-stdhdr" ) { |
---|
| 213 | noincstd_flag = true; // strip the no-include-stdhdr flag |
---|
[1ee048fd] | 214 | } else if ( arg == "-cfalib") { |
---|
| 215 | compiling_libs = true; |
---|
[b87a5ed] | 216 | } else if ( arg == "-compiler" ) { |
---|
| 217 | // use the user specified compiler |
---|
| 218 | i += 1; |
---|
| 219 | if ( i == argc ) continue; // next argument available ? |
---|
| 220 | compiler_path = argv[i]; |
---|
[2c60af75] | 221 | Putenv( argv, arg + "=" + argv[i] ); |
---|
[b87a5ed] | 222 | |
---|
[de62360d] | 223 | // C specific arguments |
---|
[b87a5ed] | 224 | |
---|
| 225 | } else if ( arg == "-v" ) { |
---|
| 226 | verbose = true; // verbosity required |
---|
[2c60af75] | 227 | args[nargs++] = argv[i]; // pass argument along |
---|
[b87a5ed] | 228 | } else if ( arg == "-g" ) { |
---|
| 229 | debugging = true; // symbolic debugging required |
---|
[2c60af75] | 230 | args[nargs++] = argv[i]; // pass argument along |
---|
[bbb1b35] | 231 | } else if ( arg == "-save-temps" ) { |
---|
| 232 | args[nargs++] = argv[i]; // pass argument along |
---|
| 233 | Putenv( argv, arg ); // save cfa-cpp output |
---|
[8c63bb4] | 234 | } else if ( prefix( arg, "-x" ) ) { // file suffix ? |
---|
| 235 | string lang; |
---|
[2c60af75] | 236 | args[nargs++] = argv[i]; // pass argument along |
---|
[8c63bb4] | 237 | if ( arg.length() == 2 ) { // separate argument ? |
---|
| 238 | i += 1; |
---|
| 239 | if ( i == argc ) continue; // next argument available ? |
---|
| 240 | lang = argv[i]; |
---|
[2c60af75] | 241 | args[nargs++] = argv[i]; // pass argument along |
---|
[8c63bb4] | 242 | } else { |
---|
| 243 | lang = arg.substr( 2 ); |
---|
| 244 | } // if |
---|
[4f5a8a2] | 245 | x_flag = lang != "none"; |
---|
[e3215c5] | 246 | } else if ( prefix( arg, "-std=" ) || prefix( arg, "--std=" ) ) { |
---|
[53ba273] | 247 | std_flag = true; // -std=XX provided |
---|
[2c60af75] | 248 | args[nargs++] = argv[i]; // pass argument along |
---|
[44bca7f] | 249 | } else if ( arg == "-w" ) { |
---|
[2c60af75] | 250 | args[nargs++] = argv[i]; // pass argument along |
---|
| 251 | Putenv( argv, arg ); |
---|
[44bca7f] | 252 | } else if ( prefix( arg, "-W" ) ) { // check before next tests |
---|
| 253 | if ( arg == "-Werror" || arg == "-Wall" ) { |
---|
[2c60af75] | 254 | args[nargs++] = argv[i]; // pass argument along |
---|
| 255 | Putenv( argv, argv[i] ); |
---|
[44bca7f] | 256 | } else { |
---|
| 257 | unsigned int adv = prefix( arg, "-Wno-" ) ? 5 : 2; |
---|
[2c60af75] | 258 | args[nargs] = argv[i]; // conditionally pass argument along |
---|
| 259 | const char * warning = argv[i] + adv; // extract warning |
---|
[af39199d] | 260 | if ( SemanticWarning_Exist( warning ) ) { // replace the argument for cfa-cpp |
---|
[2c60af75] | 261 | Putenv( argv, arg ); |
---|
[af39199d] | 262 | } // if |
---|
[44bca7f] | 263 | nargs += 1; |
---|
| 264 | } // if |
---|
[b87a5ed] | 265 | } else if ( prefix( arg, "-B" ) ) { |
---|
[417a630] | 266 | bprefix = arg.substr(2); // strip the -B flag |
---|
[b87a5ed] | 267 | } else if ( arg == "-c" || arg == "-S" || arg == "-E" || arg == "-M" || arg == "-MM" ) { |
---|
[2c60af75] | 268 | args[nargs++] = argv[i]; // pass argument along |
---|
[b87a5ed] | 269 | if ( arg == "-E" || arg == "-M" || arg == "-MM" ) { |
---|
| 270 | cpp_flag = true; // cpp only |
---|
| 271 | } // if |
---|
| 272 | link = false; // no linkage required |
---|
| 273 | } else if ( arg[1] == 'l' ) { |
---|
| 274 | // if the user specifies a library, load it after user code |
---|
[2c60af75] | 275 | libs[nlibs++] = argv[i]; |
---|
[37fe352] | 276 | } else if ( arg == "-m32" ) { |
---|
| 277 | m32 = true; |
---|
| 278 | m64 = false; |
---|
[2c60af75] | 279 | args[nargs++] = argv[i]; |
---|
[37fe352] | 280 | } else if ( arg == "-m64" ) { |
---|
| 281 | m64 = true; |
---|
| 282 | m32 = false; |
---|
[2c60af75] | 283 | args[nargs++] = argv[i]; |
---|
[b87a5ed] | 284 | } else { |
---|
| 285 | // concatenate any other arguments |
---|
[2c60af75] | 286 | args[nargs++] = argv[i]; |
---|
[b87a5ed] | 287 | } // if |
---|
| 288 | } else { |
---|
[8c63bb4] | 289 | bool cfa = suffix( arg ); // check suffix |
---|
[4f5a8a2] | 290 | if ( ! x_flag && cfa ) { // no explicit suffix and cfa suffix ? |
---|
[2c60af75] | 291 | args[nargs++] = "-x"; |
---|
| 292 | args[nargs++] = "c"; |
---|
[8c63bb4] | 293 | } // if |
---|
[2c60af75] | 294 | args[nargs++] = argv[i]; // concatenate files |
---|
[4f5a8a2] | 295 | if ( ! x_flag && cfa ) { // no explicit suffix and cfa suffix ? |
---|
[2c60af75] | 296 | args[nargs++] = "-x"; |
---|
| 297 | args[nargs++] = "none"; |
---|
[dffaeac] | 298 | } // if |
---|
[b87a5ed] | 299 | nonoptarg = true; |
---|
| 300 | } // if |
---|
| 301 | } // for |
---|
[51b7345] | 302 | |
---|
[dffaeac] | 303 | #ifdef __x86_64__ |
---|
[2c60af75] | 304 | args[nargs++] = "-mcx16"; // allow double-wide CAA |
---|
[dffaeac] | 305 | #endif // __x86_64__ |
---|
[e3215c5] | 306 | |
---|
[dffaeac] | 307 | #ifdef __DEBUG_H__ |
---|
[b87a5ed] | 308 | cerr << "args:"; |
---|
| 309 | for ( int i = 1; i < nargs; i += 1 ) { |
---|
| 310 | cerr << " " << args[i]; |
---|
| 311 | } // for |
---|
| 312 | cerr << endl; |
---|
[dffaeac] | 313 | #endif // __DEBUG_H__ |
---|
[51b7345] | 314 | |
---|
[bbb1b35] | 315 | // -E flag stops at cc1 stage 1, so cfa-cpp in cc1 stage 2 is never executed. |
---|
[b87a5ed] | 316 | if ( cpp_flag && CFA_flag ) { |
---|
[aced69a] | 317 | CFA_flag = false; |
---|
| 318 | cerr << argv[0] << " warning, both -E and -CFA flags specified, using -E and ignoring -CFA." << endl; |
---|
[b87a5ed] | 319 | } // if |
---|
[51b7345] | 320 | |
---|
[6e4b913] | 321 | // add the CFA include-library paths, which allow direct access to header files without directory qualification |
---|
[158b026] | 322 | string libbase; |
---|
| 323 | switch(path) { |
---|
| 324 | case Installed: |
---|
[2c60af75] | 325 | args[nargs++] = "-I" CFA_INCDIR; |
---|
[158b026] | 326 | // do not use during build |
---|
| 327 | if ( ! noincstd_flag ) { |
---|
[2c60af75] | 328 | args[nargs++] = "-I" CFA_INCDIR "stdhdr"; |
---|
[a5121bf] | 329 | } // if |
---|
[2c60af75] | 330 | args[nargs++] = "-I" CFA_INCDIR "concurrency"; |
---|
| 331 | args[nargs++] = "-I" CFA_INCDIR "containers"; |
---|
[158b026] | 332 | libbase = CFA_LIBDIR; |
---|
| 333 | break; |
---|
| 334 | case BuildTree: |
---|
| 335 | case Distributed: |
---|
[2c60af75] | 336 | args[nargs++] = "-I" TOP_SRCDIR "libcfa/src"; |
---|
[158b026] | 337 | // do not use during build |
---|
| 338 | if ( ! noincstd_flag ) { |
---|
[2c60af75] | 339 | args[nargs++] = "-I" TOP_SRCDIR "libcfa/src" "/stdhdr"; |
---|
[a5121bf] | 340 | } // if |
---|
[2c60af75] | 341 | args[nargs++] = "-I" TOP_SRCDIR "libcfa/src" "/concurrency"; |
---|
| 342 | args[nargs++] = "-I" TOP_SRCDIR "libcfa/src" "/containers"; |
---|
[158b026] | 343 | |
---|
| 344 | libbase = TOP_BUILDDIR "libcfa/"; |
---|
| 345 | |
---|
| 346 | break; |
---|
[2c60af75] | 347 | } // if |
---|
[76c7f65e] | 348 | |
---|
[a37133c] | 349 | // add stdbool to get defines for bool/true/false |
---|
[2c60af75] | 350 | args[nargs++] = "-imacros"; |
---|
| 351 | args[nargs++] = "stdbool.h"; |
---|
[a37133c] | 352 | |
---|
[1ee048fd] | 353 | if( compiling_libs ) { |
---|
[2c60af75] | 354 | Putenv( argv, "-t" ); |
---|
| 355 | } // if |
---|
[37fe352] | 356 | |
---|
[bbb1b35] | 357 | string arch( m32 ? CFA_32_CPU : (m64 ? CFA_64_CPU : CFA_DEFAULT_CPU) ); |
---|
[13a984c] | 358 | if ( ! m32 && ! m64 ) { |
---|
| 359 | if ( arch == "x86" ) { |
---|
[2c60af75] | 360 | args[nargs++] = "-m32"; |
---|
[13a984c] | 361 | } else if ( arch == "x64" ) { |
---|
[2c60af75] | 362 | args[nargs++] = "-m64"; |
---|
[13a984c] | 363 | } // if |
---|
[dfb7c96] | 364 | } // if |
---|
[a5121bf] | 365 | |
---|
[c9e640e] | 366 | const char * config = nolib ? "nolib" : (debug ? "debug": "nodebug"); |
---|
[a5121bf] | 367 | string libdir = libbase + arch + "-" + config; |
---|
[dfb7c96] | 368 | |
---|
[158b026] | 369 | if (path != Distributed) { |
---|
[bbfd0e0] | 370 | if ( ! nolib && ! dirExists( libdir ) ) { |
---|
| 371 | cerr << argv[0] << " internal error, configuration " << config << " not installed." << endl; |
---|
| 372 | cerr << "Was looking for " << libdir << endl; |
---|
| 373 | for(int i = 1; i < argc; i++) { |
---|
| 374 | cerr << argv[i] << " "; |
---|
| 375 | } |
---|
| 376 | cerr << endl; |
---|
| 377 | libdir = libbase + arch + "-" + "nolib"; |
---|
| 378 | } // if |
---|
[a5121bf] | 379 | |
---|
[bbfd0e0] | 380 | if ( ! dirExists( libdir ) ) { |
---|
| 381 | cerr << argv[0] << " internal error, cannot find prelude directory." << endl; |
---|
| 382 | cerr << "Was looking for " << libdir << endl; |
---|
| 383 | exit( EXIT_FAILURE ); |
---|
| 384 | } // if |
---|
[dfb7c96] | 385 | } // if |
---|
[a5121bf] | 386 | |
---|
[158b026] | 387 | switch(path) { |
---|
| 388 | case Installed : Putenv( argv, "--prelude-dir=" + libdir ); break; |
---|
| 389 | case BuildTree : Putenv( argv, "--prelude-dir=" + libdir + "/prelude" ); break; |
---|
| 390 | case Distributed : Putenv( argv, "--prelude-dir=" + dir(argv[0]) ); break; |
---|
[bbfd0e0] | 391 | } |
---|
[81e60f7] | 392 | |
---|
[def9d4e] | 393 | for ( int i = 0; i < nlibs; i += 1 ) { // copy non-user libraries after all user libraries |
---|
[2c60af75] | 394 | args[nargs++] = libs[i]; |
---|
[def9d4e] | 395 | } // for |
---|
| 396 | |
---|
[b87a5ed] | 397 | if ( link ) { |
---|
[2c60af75] | 398 | args[nargs++] = "-Xlinker"; |
---|
| 399 | args[nargs++] = "--undefined=__cfaabi_dbg_bits_write"; |
---|
| 400 | args[nargs++] = "-Xlinker"; |
---|
| 401 | args[nargs++] = "--undefined=__cfaabi_interpose_startup"; |
---|
| 402 | args[nargs++] = "-Xlinker"; |
---|
| 403 | args[nargs++] = "--undefined=__cfaabi_appready_startup"; |
---|
[c8c0c7c5] | 404 | args[nargs++] = "-z"; |
---|
| 405 | args[nargs++] = "execstack"; |
---|
[6bfe5cc] | 406 | |
---|
[b544afa] | 407 | // include the cfa library in case it is needed |
---|
[158b026] | 408 | args[nargs++] = ( *new string( string("-L" ) + libdir + (path != Installed ? "/src/.libs" : "")) ).c_str(); |
---|
| 409 | args[nargs++] = ( *new string( string("-Wl,-rpath," ) + libdir + (path != Installed ? "/src/.libs" : "")) ).c_str(); |
---|
[2c60af75] | 410 | args[nargs++] = "-Wl,--push-state,--as-needed"; |
---|
| 411 | args[nargs++] = "-lcfathread"; |
---|
| 412 | args[nargs++] = "-Wl,--pop-state"; |
---|
[92a9768] | 413 | args[nargs++] = "-Wl,--push-state,--no-as-needed"; |
---|
[2c60af75] | 414 | args[nargs++] = "-lcfa"; |
---|
[92a9768] | 415 | args[nargs++] = "-Wl,--pop-state"; |
---|
[e8c52cf] | 416 | args[nargs++] = "-pthread"; |
---|
[2c60af75] | 417 | args[nargs++] = "-ldl"; |
---|
| 418 | args[nargs++] = "-lrt"; |
---|
| 419 | args[nargs++] = "-lm"; |
---|
[51b7345] | 420 | } // if |
---|
| 421 | |
---|
[2c60af75] | 422 | args[nargs++] = "-fexceptions"; // add exception flags (unconditionally) |
---|
[e9145a3] | 423 | |
---|
[2c60af75] | 424 | // add flags based on the type of compile |
---|
[8c17ab0] | 425 | |
---|
[2c60af75] | 426 | args[nargs++] = ( *new string( string("-D__CFA_MAJOR__=") + Major ) ).c_str(); |
---|
| 427 | args[nargs++] = ( *new string( string("-D__CFA_MINOR__=") + Minor ) ).c_str(); |
---|
| 428 | args[nargs++] = ( *new string( string("-D__CFA_PATCH__=") + Patch ) ).c_str(); |
---|
| 429 | args[nargs++] = "-D__CFA__"; |
---|
| 430 | args[nargs++] = "-D__CFORALL__"; |
---|
| 431 | args[nargs++] = "-D__cforall"; |
---|
[51b7345] | 432 | |
---|
[b87a5ed] | 433 | if ( cpp_flag ) { |
---|
[2c60af75] | 434 | args[nargs++] = "-D__CPP__"; |
---|
[b87a5ed] | 435 | } // if |
---|
[51b7345] | 436 | |
---|
[b87a5ed] | 437 | if ( CFA_flag ) { |
---|
[2c60af75] | 438 | Putenv( argv, "-N" ); |
---|
| 439 | Putenv( argv, "-CFA" ); |
---|
[bbb1b35] | 440 | // -CFA implies cc1 stage 2, but gcc does not pass the -o file to this stage because it believe the file is for |
---|
| 441 | // the linker. Hence, the -o file is explicit passed to cc1 stage 2 and used as cfa-cpp's output file. |
---|
[2c60af75] | 442 | if ( o_file ) Putenv( argv, string( "-o=" ) + argv[o_file] ); |
---|
[fa477f7] | 443 | } else { |
---|
[2c60af75] | 444 | Putenv( argv, "-L" ); |
---|
[b87a5ed] | 445 | } // if |
---|
[2c60af75] | 446 | |
---|
[b87a5ed] | 447 | if ( debug ) { |
---|
| 448 | heading += " (debug)"; |
---|
[2c60af75] | 449 | args[nargs++] = "-D__CFA_DEBUG__"; |
---|
[b87a5ed] | 450 | } else { |
---|
| 451 | heading += " (no debug)"; |
---|
| 452 | } // if |
---|
[51b7345] | 453 | |
---|
[417a630] | 454 | if ( bprefix.length() == 0 ) { |
---|
[158b026] | 455 | switch(path) { |
---|
| 456 | case Installed : bprefix = installlibdir; break; |
---|
| 457 | case BuildTree : bprefix = srcdriverdir ; break; |
---|
| 458 | case Distributed : bprefix = dir(argv[0]) ; break; |
---|
[bbfd0e0] | 459 | } |
---|
[417a630] | 460 | if ( bprefix[bprefix.length() - 1] != '/' ) bprefix += '/'; |
---|
[81e60f7] | 461 | Putenv( argv, string("-B=") + bprefix ); |
---|
[b87a5ed] | 462 | } // if |
---|
[51b7345] | 463 | |
---|
[2c60af75] | 464 | args[nargs++] = "-Xlinker"; // used by backtrace |
---|
| 465 | args[nargs++] = "-export-dynamic"; |
---|
[6bfe5cc] | 466 | |
---|
[b87a5ed] | 467 | // execute the compilation command |
---|
[51b7345] | 468 | |
---|
[b87a5ed] | 469 | args[0] = compiler_path.c_str(); // set compiler command for exec |
---|
| 470 | // find actual name of the compiler independent of the path to it |
---|
| 471 | int p = compiler_path.find_last_of( '/' ); // scan r -> l for first '/' |
---|
| 472 | if ( p == -1 ) { |
---|
| 473 | compiler_name = compiler_path; |
---|
| 474 | } else { |
---|
| 475 | compiler_name = *new string( compiler_path.substr( p + 1 ) ); |
---|
| 476 | } // if |
---|
[51b7345] | 477 | |
---|
[b87a5ed] | 478 | if ( prefix( compiler_name, "gcc" ) ) { // allow suffix on gcc name |
---|
[2c60af75] | 479 | args[nargs++] = "-no-integrated-cpp"; |
---|
| 480 | args[nargs++] = "-Wno-deprecated"; |
---|
| 481 | #ifdef HAVE_CAST_FUNCTION_TYPE |
---|
| 482 | args[nargs++] = "-Wno-cast-function-type"; |
---|
| 483 | #endif // HAVE_CAST_FUNCTION_TYPE |
---|
[157d094] | 484 | if ( ! std_flag ) { // default c11, if none specified |
---|
[2c60af75] | 485 | args[nargs++] = "-std=gnu11"; |
---|
[de62360d] | 486 | } // if |
---|
[2c60af75] | 487 | args[nargs++] = "-fgnu89-inline"; |
---|
| 488 | args[nargs++] = "-D__int8_t_defined"; // prevent gcc type-size attributes |
---|
[417a630] | 489 | args[nargs++] = ( *new string( string("-B") + bprefix ) ).c_str(); |
---|
[b87a5ed] | 490 | } else { |
---|
[e24f13a] | 491 | cerr << argv[0] << " error, compiler \"" << compiler_name << "\" unsupported." << endl; |
---|
[b87a5ed] | 492 | exit( EXIT_FAILURE ); |
---|
| 493 | } // if |
---|
[51b7345] | 494 | |
---|
[bbb1b35] | 495 | args[nargs] = nullptr; // terminate |
---|
[51b7345] | 496 | |
---|
[dffaeac] | 497 | #ifdef __DEBUG_H__ |
---|
[b87a5ed] | 498 | cerr << "nargs: " << nargs << endl; |
---|
| 499 | cerr << "args:" << endl; |
---|
[bbb1b35] | 500 | for ( int i = 0; args[i] != nullptr; i += 1 ) { |
---|
[b87a5ed] | 501 | cerr << " \"" << args[i] << "\"" << endl; |
---|
| 502 | } // for |
---|
[1ee048fd] | 503 | cerr << endl; |
---|
[dffaeac] | 504 | #endif // __DEBUG_H__ |
---|
[51b7345] | 505 | |
---|
[b87a5ed] | 506 | if ( ! quiet ) { |
---|
| 507 | cerr << "CFA " << "Version " << Version << heading << endl; |
---|
| 508 | if ( help ) { |
---|
| 509 | cerr << |
---|
| 510 | "-debug\t\t\t: use cfa runtime with debug checking" << endl << |
---|
| 511 | "-help\t\t\t: print this help message" << endl << |
---|
| 512 | "-quiet\t\t\t: print no messages from the cfa command" << endl << |
---|
| 513 | "-CFA\t\t\t: run the cpp preprocessor and the cfa-cpp translator" << endl << |
---|
| 514 | "-XCFA -cfa-cpp-flag\t: pass next flag as-is to the cfa-cpp translator" << endl << |
---|
| 515 | "...\t\t\t: any other " << compiler_name << " flags" << endl; |
---|
| 516 | } // if |
---|
[51b7345] | 517 | } // if |
---|
| 518 | |
---|
[b87a5ed] | 519 | if ( verbose ) { |
---|
| 520 | if ( argc == 2 ) exit( EXIT_SUCCESS ); // if only the -v flag is specified, do not invoke gcc |
---|
[51b7345] | 521 | |
---|
[bbb1b35] | 522 | for ( int i = 0; args[i] != nullptr; i += 1 ) { |
---|
[b87a5ed] | 523 | cerr << args[i] << " "; |
---|
| 524 | } // for |
---|
| 525 | cerr << endl; |
---|
| 526 | } // if |
---|
[51b7345] | 527 | |
---|
[b87a5ed] | 528 | if ( ! nonoptarg ) { |
---|
| 529 | cerr << argv[0] << " error, no input files" << endl; |
---|
| 530 | exit( EXIT_FAILURE ); |
---|
| 531 | } // if |
---|
[51b7345] | 532 | |
---|
[b87a5ed] | 533 | // execute the command and return the result |
---|
[51b7345] | 534 | |
---|
[b87a5ed] | 535 | execvp( args[0], (char *const *)args ); // should not return |
---|
[2c60af75] | 536 | perror( "CFA Translator error: execvp" ); |
---|
[b87a5ed] | 537 | exit( EXIT_FAILURE ); |
---|
[51b7345] | 538 | } // main |
---|
| 539 | |
---|
| 540 | // Local Variables: // |
---|
[b87a5ed] | 541 | // tab-width: 4 // |
---|
| 542 | // mode: c++ // |
---|
[51b7345] | 543 | // compile-command: "make install" // |
---|
| 544 | // End: // |
---|