Changeset 7030dab for driver/cfa.cc
- Timestamp:
- Apr 6, 2020, 4:46:28 PM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum, stuck-waitfor-destruct
- Children:
- e3bc51c
- Parents:
- 71d6bd8 (diff), 057298e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
driver/cfa.cc (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
driver/cfa.cc
r71d6bd8 r7030dab 10 10 // Created On : Tue Aug 20 13:44:49 2002 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Sep 10 17:00:15 201913 // Update Count : 42 012 // Last Modified On : Fri Jan 31 16:48:03 2020 13 // Update Count : 421 14 14 // 15 15 … … 187 187 } else if ( arg == "-XCFA" ) { // CFA pass through 188 188 i += 1; 189 if ( i == argc ) continue; // next argument available ? 189 190 Putenv( argv, argv[i] ); 190 191 … … 401 402 args[nargs++] = "-Xlinker"; 402 403 args[nargs++] = "--undefined=__cfaabi_appready_startup"; 404 args[nargs++] = "-z"; 405 args[nargs++] = "execstack"; 403 406 404 407 // include the cfa library in case it is needed … … 408 411 args[nargs++] = "-lcfathread"; 409 412 args[nargs++] = "-Wl,--pop-state"; 413 args[nargs++] = "-Wl,--push-state,--no-as-needed"; 410 414 args[nargs++] = "-lcfa"; 411 args[nargs++] = "-lpthread"; 415 args[nargs++] = "-Wl,--pop-state"; 416 args[nargs++] = "-pthread"; 412 417 args[nargs++] = "-ldl"; 413 418 args[nargs++] = "-lrt";
Note:
See TracChangeset
for help on using the changeset viewer.