Changes in / [69d1748:7c9ac4a]


Ignore:
Files:
2 added
5 edited

Legend:

Unmodified
Added
Removed
  • .gitignore

    r69d1748 r7c9ac4a  
    4848libcfa/x64-debug/
    4949libcfa/x64-nodebug/
    50 libcfa/x64-nolib/
    5150libcfa/x86-debug/
    5251libcfa/x86-nodebug/
    53 libcfa/x86-nolib/
    54 libcfa/arm-debug/
    55 libcfa/arm-nodebug/
    56 libcfa/arm-nolib/
     52libcfa/arm64-debug/
     53libcfa/arm64-nodebug/
    5754
    5855# generated by bison and lex from parser.yy and lex.ll
  • doc/theses/andrew_beach_MMath/cfalab.sty

    r69d1748 r7c9ac4a  
    7272    \renewcommand\textunderscore{\csuse{cfalab@textunderscore@#1}}}
    7373
     74% This is executed very early in the \begin{document} code.
     75\AtEndPreamble{
     76  \@ifpackageloaded{hyperref}{
     77    % Convert symbols to pdf compatable forms when required.
     78    \pdfstringdefDisableCommands{
     79      \def\CFA{CFA}
     80    }
     81  }{}
     82}
     83
    7484\endinput
  • driver/cc1.cc

    r69d1748 r7c9ac4a  
    1010// Created On       : Fri Aug 26 14:23:51 2005
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sun Aug 16 21:03:02 2020
    13 // Update Count     : 413
     12// Last Modified On : Tue Nov 17 14:27:08 2020
     13// Update Count     : 414
    1414//
    1515
     
    9797                        } else if ( val == "-CFA" ) {
    9898                                CFA_flag = true;
    99                         } else if ( val == "-save-temps" ) {
     99                        } else if ( val == "-save-temps" || val == "--save-temps" ) {
    100100                                save_temps = true;
    101101                        } else if ( prefix( val, "-o=" ) ) {            // output file for -CFA
  • driver/cfa.cc

    r69d1748 r7c9ac4a  
    1010// Created On       : Tue Aug 20 13:44:49 2002
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Sep  2 17:59:20 2020
    13 // Update Count     : 438
     12// Last Modified On : Tue Nov 17 14:27:28 2020
     13// Update Count     : 440
    1414//
    1515
     
    231231                                debugging = true;                                               // symbolic debugging required
    232232                                args[nargs++] = argv[i];                                // pass flag along
    233                         } else if ( arg == "-save-temps" ) {
     233                        } else if ( arg == "-save-temps" || arg == "--save-temps" ) {
    234234                                args[nargs++] = argv[i];                                // pass flag along
    235235                                Putenv( argv, arg );                                    // save cfa-cpp output
  • tests/manipulatorsOutput2.cfa

    r69d1748 r7c9ac4a  
    77// Created On       : Sat Jun  8 18:04:11 2019
    88// Last Modified By : Peter A. Buhr
    9 // Last Modified On : Mon Jun 10 12:37:57 2019
    10 // Update Count     : 8
     9// Last Modified On : Sun Nov 15 08:11:53 2020
     10// Update Count     : 9
    1111//
    1212
     
    5252// Local Variables: //
    5353// tab-width: 4 //
    54 // compile-command: "cfa -Wall -Wextra amanipulatorsOutput2.cfa" //
     54// compile-command: "cfa -Wall -Wextra manipulatorsOutput2.cfa" //
    5555// End: //
Note: See TracChangeset for help on using the changeset viewer.