Ver código fonte

Update Makefile for compilation on ARCH=x86_64

tags/v0.9.3
Holger Lubitz 17 anos atrás
pai
commit
bfc4737751
1 arquivos alterados com 6 adições e 0 exclusões
  1. 6
    0
      src/Makefile

+ 6
- 0
src/Makefile Ver arquivo

@@ -21,6 +21,12 @@ ifndef ARCH
21 21
 ARCH		:= $(shell uname -m | sed -e s,i[3456789]86,i386,)
22 22
 endif
23 23
 
24
+# handle x86_64 like i386, but set -m32 option for 32bit code only
25
+ifeq ($(ARCH),x86_64)
26
+ARCH		:= i386
27
+CFLAGS		+= -m32
28
+endif
29
+
24 30
 # Drag in architecture-specific Config
25 31
 #
26 32
 MAKEDEPS	+= arch/$(ARCH)/Config

Carregando…
Cancelar
Salvar