Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mach_override.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 167402a..935a8d7 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,12 +1,14 @@
desc 'Build'
task :build do
system('mkdir build')
- system('gcc -o build/test_gcc_i386 -framework CoreServices *.c *.cp libudis86/*.c')
+ system('gcc -o build/test_gcc_i386 -m32 -framework CoreServices *.c *.cp libudis86/*.c')
+ system('gcc -o build/test_gcc_x86_64 -m64 -framework CoreServices *.c *.cp libudis86/*.c')
end
desc 'Test'
task :test do
system('build/test_gcc_i386')
+ system('build/test_gcc_x86_64')
end
desc 'Clean up'