Sto provando a compilare un programma C++ su Windows utilizzando GCC e un makefile.errore: "_hypot" non è stato dichiarato in questo ambito
sto ottenendo il seguente errore
c:\mingw\include\math.h: In function 'float hypotf(float, float)':
c:\mingw\include\math.h:635:30: error: '_hypot' was not declared in this scope
{ return (float)(_hypot (x, y)); }
ho letto che qualsiasi file che include il GCC ha bisogno bandiera linker -lm. Così ho aggiunto questo al mio makefile, ma non ha risolvere il problema ...
Ecco il mio makefile
CC := g++
CFLAGS := -std=c++0x -g -O2 -static-libgcc -static-libstdc++
LFLAGS := -lm
BIN_DIR := bin
BUILD_DIR := build
SRC_DIR := src
MAIN := MyFirstVstMain
TARGET := MyFirstVstMake
SOURCES := $(wildcard src/*.cpp)
OBJECTS := $(SOURCES:$(SRC_DIR)/%.cpp=$(BUILD_DIR)/%.o)
$(BIN_DIR)/$(TARGET): CREATE_DIRS $(BUILD_DIR)/$(MAIN).o $(OBJECTS)
$(CC) $(OBJECTS) $(CFLAGS) -o [email protected] $(LFLAGS)
$(BUILD_DIR)/$(MAIN).o: $(SRC_DIR)/MyFirstVstMain.cpp
$(CC) $(CFLAGS) -c -o [email protected] $< $(LFLAGS)
$(BUILD_DIR)/%.o: $(SRC_DIR)/%.cpp $(SRC_DIR)/%.h
$(CC) $(CFLAGS) -c -o [email protected] $< $(LFLAGS)
CREATE_DIRS:
if not exist $(BIN_DIR) mkdir $(BIN_DIR)
if not exist $(BUILD_DIR) mkdir $(BUILD_DIR)
CLEAN:
if exist $(BUILD_DIR) rmdir /Q /S $(BUILD_DIR)
A quanto pare un bug in MinGW: http://ehc.ac/p/mingw/bugs/2250/ –
Come posso aggirare questo. Sto usando una libreria di terze parti che utilizza math.h. In particolare lo steinberg vst sdk. – ScottF
quindi ... che ne dici di un esempio di codice? Il makefile è irrilevante se non quello di mostrare il collegamento CFLAGS –