Ver a proveniência

Update Makefile

pull/1357/head
raysan5 há 5 anos
ascendente
cometimento
05b3ca0a83
1 ficheiros alterados com 8 adições e 8 eliminações
  1. +8
    -8
      src/Makefile

+ 8
- 8
src/Makefile Ver ficheiro

@ -210,14 +210,6 @@ endif
CC = gcc
AR = ar
# GCC could support multilib building for x86 (-m32) and x64 (-m64)
ifeq ($(CC), gcc)
ARCH = -m32
ifeq ($(RAYLIB_BUILD_ARCH),x64)
ARCH = -m64
endif
endif
ifeq ($(PLATFORM),PLATFORM_DESKTOP)
ifeq ($(PLATFORM_OS),OSX)
# OSX default compiler
@ -261,6 +253,14 @@ ifeq ($(PLATFORM),PLATFORM_ANDROID)
endif
endif
# GCC could support multilib building for x86 (-m32) and x64 (-m64)
ifeq ($(CC), gcc)
ARCH = -m32
ifeq ($(RAYLIB_BUILD_ARCH),x64)
ARCH = -m64
endif
endif
# Define compiler flags:
# -O1 defines optimization level

Carregando…
Cancelar
Guardar