From 38d6189d4335bbcdc38f0c31cf769082b96f22fa Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 30 Mar 2025 15:41:37 -0400 Subject: Further support for .dylib files on mac by changing syntax for library imports to `use -lfoo` instead of `use foo.so` --- examples/http/http.tm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/http/http.tm') diff --git a/examples/http/http.tm b/examples/http/http.tm index 2555986f..12203faf 100644 --- a/examples/http/http.tm +++ b/examples/http/http.tm @@ -1,6 +1,6 @@ # A simple HTTP library built using CURL -use libcurl.so +use -lcurl use struct HTTPResponse(code:Int, body:Text) -- cgit v1.2.3