Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Commit

Permalink
Try fixing LLVM issues on OSX
Browse files Browse the repository at this point in the history
(Also, get a decent grep)
  • Loading branch information
ilyvion committed Jun 30, 2020
1 parent f32be1e commit 090c649
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .travis/osx_script.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin/env bash

export PATH="/usr/local/opt/llvm/bin:$PATH"
export LIBCLANG_PATH="/usr/local/opt/llvm/bin"
export PATH="/usr/local/opt/grep/libexec/gnubin:$PATH"
export PATH="$(brew --prefix llvm)/bin:$PATH"
export LIBCLANG_PATH="$(brew --prefix llvm)/lib"

1 change: 1 addition & 0 deletions tcod_sys/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![allow(non_camel_case_types, non_snake_case, non_upper_case_globals)]
#![allow(clippy::missing_safety_doc, clippy::redundant_static_lifetimes)]
#![allow(improper_ctypes)]

include!(concat!("./", env!("BINDINGS_TARGET"), "_bindings.rs"));

0 comments on commit 090c649

Please sign in to comment.