We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Got an
[1] 3206 segmentation fault (core dumped) ./Terri-fried
After compiling on Linux.
The text was updated successfully, but these errors were encountered:
try to remove $(RES_FILES) from the list of the files for the compiler:
$(RES_FILES)
diff --git a/linux/Makefile b/linux/Makefile index 85345d7..400bdea 100644 --- a/linux/Makefile +++ b/linux/Makefile @@ -28,7 +28,7 @@ $(OUT_DIR): $(NAME): $(OBJS) - $(CXX) $(FLAGS) -o $(OUT_DIR)/$(NAME) $(OBJS) $(RES_FILES) $(LIBS) + $(CXX) $(FLAGS) -o $(OUT_DIR)/$(NAME) $(OBJS) $(LIBS) $(OBJ_DIR)/%.o: %.cpp $(CXX) $(FLAGS) -c $< -o $@
Sorry, something went wrong.
try to remove $(RES_FILES) from the list of the files for the compiler: diff --git a/linux/Makefile b/linux/Makefile index 85345d7..400bdea 100644 --- a/linux/Makefile +++ b/linux/Makefile @@ -28,7 +28,7 @@ $(OUT_DIR): $(NAME): $(OBJS) - $(CXX) $(FLAGS) -o $(OUT_DIR)/$(NAME) $(OBJS) $(RES_FILES) $(LIBS) + $(CXX) $(FLAGS) -o $(OUT_DIR)/$(NAME) $(OBJS) $(LIBS) $(OBJ_DIR)/%.o: %.cpp $(CXX) $(FLAGS) -c $< -o $@
I created a pull request with this already incorporated
No branches or pull requests
Got an
After compiling on Linux.
The text was updated successfully, but these errors were encountered: