6b430b4aed
implements a genetic algorithm to find the "best" options for compiling programs with the GNU Compiler Collection (GCC) C and C++ compilers. "Best", in this context, is defined as those options that produce the fastest executable program from a given source code. Acovea is a C++ framework that can be extended to test other programming languages and non-GCC compilers. WWW: http://www.coyotegulch.com/products/acovea/index.html PR: ports/101211 Submitted by: trasz <trasz at pin.if.uz.zgora.pl>
11 lines
312 B
C++
11 lines
312 B
C++
diff -urN libacovea.orig/acovea.cpp libacovea/acovea.cpp
|
|
--- libacovea.orig/acovea.cpp Tue Aug 1 19:58:27 2006
|
|
+++ libacovea/acovea.cpp Tue Aug 1 19:58:38 2006
|
|
@@ -43,6 +43,7 @@
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
+#include <sys/stat.h>
|
|
#include <sys/wait.h>
|
|
|
|
#include <vector>
|