Skip to content

Commit

Permalink
fixing go binding makefile; fixed whisper.h comile error; but not get…
Browse files Browse the repository at this point in the history
…ting ggml symbol errors
  • Loading branch information
byoungdale committed Aug 22, 2024
1 parent 9e3c534 commit e3c1350
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bindings/go/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ ifndef UNAME_M
UNAME_M := $(shell uname -m)
endif

GGML_METAL_PATH_RESOURCES := $(abspath ../..)
GGML_METAL_PATH_RESOURCES := $(abspath ../../ggml/src)
BUILD_DIR := build
MODELS_DIR := models
EXAMPLES_DIR := $(wildcard examples/*)
INCLUDE_PATH := $(abspath ../..)
LIBRARY_PATH := $(abspath ../..)
INCLUDE_PATH := $(abspath ../../include):$(abspath ../../ggml/include)
LIBRARY_PATH := $(abspath ../..):$(abspath ../../src):$(abspath ../../ggml/src)

ifeq ($(UNAME_S),Darwin)
EXT_LDFLAGS := -framework Foundation -framework Metal -framework MetalKit
Expand Down

0 comments on commit e3c1350

Please sign in to comment.