Skip to content

Commit

Permalink
Update default args.
Browse files Browse the repository at this point in the history
  • Loading branch information
phronmophobic committed Jul 17, 2024
1 parent a2a9647 commit 7ded42b
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions src/com/phronemophobic/clong/clang.clj
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,20 @@

;; can find by calling clang -### empty-file.h
(def default-arguments
["-resource-dir"
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.0"
[ "-resource-dir"
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0"
"-isysroot"
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk"
"-I"
"/opt/local/include/"
"/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk"
"-I/usr/local/include"
"-internal-isystem"
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include"
"/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include"
"-internal-isystem"
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.0/include"
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/15.0.0/include"
"-internal-externc-isystem"
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include"
"/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include"
"-internal-externc-isystem"
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include"])
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include"
])

(defn get-spelling-location [location]
(let [filep (PointerByReference.)
Expand Down

0 comments on commit 7ded42b

Please sign in to comment.