Mostly features added to DebugScript
[ipdf/code.git] / src / main.cpp
index a4c570b..22a1f6b 100644 (file)
@@ -21,6 +21,9 @@ void sigfpe_handler(int sig)
 
 int main(int argc, char ** argv)
 {      
+       
+       
+       //Debug("Main!");
        signal(SIGFPE, sigfpe_handler);
        #if REALTYPE == REAL_IRRAM
          iRRAM_initialize(argc,argv);
@@ -31,10 +34,17 @@ int main(int argc, char ** argv)
        #endif
 
        // We want to crash if we ever get a NaN.
+       // AH, so *this* is where that got enabled, I was looking for compiler flags
+       #ifndef __MINGW32__
        feenableexcept(FE_DIVBYZERO | FE_INVALID | FE_OVERFLOW);
-
+       #endif
+       #if REALTYPE == REAL_MPFRCPP
+       mpfr_set_default_prec(6);
+       #endif
        DebugRealInfo();
 
+
+
        Document doc("","fonts/ComicSans.ttf");
        srand(time(NULL));
 

UCC git Repository :: git.ucc.asn.au