# Automatic configuration of the UCW Library
# (c) 2005 Martin Mares <mj@ucw.cz>
+### OS ###
+
+Test("OS", "Checking on which OS we run", sub {
+ my $os = `uname`;
+ chomp $os;
+ Fail "Unable to determine OS type" if $? || $os eq "";
+ return $os;
+});
+
+if (Get("OS") eq "Linux") {
+ Set("CONFIG_LINUX");
+} else {
+ Fail "Don't know how to run on this operating system.";
+}
+
+### CPU ###
+
+Test("CPU_ARCH", "Checking for CPU architecture", sub {
+ my $mach = `uname -m`;
+ chomp $mach;
+ Fail "Unable to determine machine type" if $? || $mach eq "";
+ if ($mach =~ /^i[0-9]86$/) {
+ Set("CPU_I386");
+ my $arch = "";
+ if (IsSet("CONFIG_EXACT_CPU") && IsSet("CONFIG_LINUX") && open X, "/proc/cpuinfo") {
+ my %pc = ();
+ while (<X>) {
+ chomp;
+ /^$/ && last;
+ /^([^\t]+)\t+:\s*(.*)$/ and $pc{$1}=$2;
+ }
+ close X;
+ if ($pc{'vendor_id'} eq "AuthenticAMD" && $pc{'cpu family'} >= 6) {
+ $arch = "i686";
+ }
+ if ($arch ne "") {
+ Log "(according to /proc/cpuinfo) ";
+ } else {
+ Log "(don't understand /proc/cpuinfo) ";
+ }
+ }
+ return $arch ? $arch : "i386";
+ } else {
+ return "unknown";
+ }
+});
+if (Get("CPU_ARCH") eq "unknown") { Warn "CPU type not recognized, using defaults, keep fingers crossed."; }
+
### Compiler and its Options ###
# Default compiler
# C optimizations
Set("COPT" => '-O2 -fstrict-aliasing -march=$(CPU_ARCH)');
+Append("COPT", '-march=$(CPU_ARCH)') if IsSet("CPU_ARCH");
# C optimizations for highly exposed code
Set("COPT2" => '-O3');
Append("CWARNS" => "-Wundef -Wredundant-decls");
Append("COPT" => "-finline-limit=5000 --param large-function-insns=5000 --param inline-unit-growth=200 --param large-function-growth=400");
} else {
- Log "WARNING: Don't know anything about this GCC version, using default switches.\n";
+ Warn "Don't know anything about this GCC version, using default switches.\n";
}
if (IsSet("CONFIG_DEBUG")) {
### CPU Type and Features ###
-Set("CPU_ARCH" => 'i686') if !IsSet("CPU_ARCH");
-Set("CPU_I386");
Set("CPU_LITTLE_ENDIAN");
#CPU_BIG_ENDIAN=1
Set("CPU_ALLOW_UNALIGNED");
Set("CPU_STRUCT_ALIGN" => 4);
Set("CPU_64BIT_POINTERS");
-### OS Type ###
-
-Set("CONFIG_LINUX");
-
# Return success
1;
our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
$VERSION = 1.0;
@ISA = qw(Exporter);
- @EXPORT = qw(&Init &Log &Notice &Fail &IsSet &Set &UnSet &Append &Override &Get &Test &Include &Finish &FindFile &TryFindFile);
+ @EXPORT = qw(&Init &Log &Notice &Warn &Fail &IsSet &Set &UnSet &Append &Override &Get &Test &Include &Finish &FindFile &TryFindFile);
@EXPORT_OK = qw();
%EXPORT_TAGS = ();
}
print @_ if $vars{"VERBOSE"};
}
+sub Warn($) {
+ print "WARNING: ", @_;
+}
+
sub Fail($) {
- Log((shift @_) . "\n");
+ Log("ERROR: " . (shift @_) . "\n");
exit 1;
}