Answer the question
In order to leave comments, you need to log in
File was built for archive which is not the architecture being linked (x86_64)?
Good day! I'm trying to set up Soil for a poppy axis. There is the following cmake file:
# SOIL makefile for linux (based on the AngelScript makefile)
# Type 'make' then 'make install' to complete the installation of the library
# For 'make install' to work, set LOCAL according to your system configuration
LOCAL = /opt/local
LIB = libSOIL.a
INC = SOIL.h
SRCDIR = ../../src
LIBDIR = ../../lib
INCDIR = ../../src
OBJDIR = obj
CXX = gcc
CXXFLAGS = -arch x86_64 -Xarch_x86_64 -O2 -s -Wall
DELETER = rm -f
COPIER = cp
SRCNAMES = \
image_helper.c \
stb_image_aug.c \
image_DXT.c \
SOIL.c \
OBJ = $(addprefix $(OBJDIR)/, $(notdir $(SRCNAMES:.c=.o)))
BIN = $(LIBDIR)/$(LIB)
all: $(BIN)
$(BIN): $(OBJ)
ar r $(BIN) $(OBJ)
ranlib $(BIN)
@echo -------------------------------------------------------------------
@echo Done. As root, type 'make install' to install the library.
$(OBJDIR)/%.o: $(SRCDIR)/%.c
$(CXX) $(CXXFLAGS) -o [email protected] -c $<
clean:
$(DELETER) $(OBJ) $(BIN)
install: $(BIN)
@echo Installing to: $(LOCAL)/lib and $(LOCAL)/include...
@echo -------------------------------------------------------------------
$(COPIER) $(BIN) $(LOCAL)/lib
$(COPIER) $(INCDIR)/$(INC) $(LOCAL)/include
@echo -------------------------------------------------------------------
@echo SOIL library installed. Enjoy!
uninstall:
$(DELETER) $(LOCAL)/include/$(INC) $(LOCAL)/lib/$(LIB)
@echo -------------------------------------------------------------------
@echo SOIL library uninstalled.
.PHONY: all clean install uninstall
Answer the question
In order to leave comments, you need to log in
These are c++ compiler flags. And your code is in C.
Try this.
In general, architecture and bit depth are different concepts.CFLAGS=-arch generic -m64 -O2 -s -Wall
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question