Skip to content

Commit

Permalink
Update glam to 0.12 (#124)
Browse files Browse the repository at this point in the history
* Update glam to 0.12

* Update cmake.rs

* Try cxx

* Update cmake.rs

* Update cmake.rs

* Update cmake.rs
  • Loading branch information
XAMPPRocky authored Feb 11, 2021
1 parent 0aea187 commit 6503057
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions physx-sys/cmake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,10 @@ fn cmake_compile(target_env: Environment) {
.define("CMAKE_CXX_COMPILER", compiler)
.define("CMAKE_BUILD_TYPE", &target_env.mode)
.profile(&target_env.mode)
// Currently there's bugs when compiling with the latest clang.
// See: https://github.com/NVIDIAGameWorks/PhysX/issues/321
.cxxflag("-Wno-alloca")
.cxxflag("-Wno-anon-enum-enum-conversion")
.build();

let lib_dir = locate_output_lib_dir(physx, &target_env.mode);
Expand Down
3 changes: 3 additions & 0 deletions physx/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

## [Unreleased]

- [PR#124](https://github.com/EmbarkStudios/physx-rs/pull/124) Upgrade glam
v0.11 -> v0.12

## [0.10.0]

- [PR#113](https://github.com/EmbarkStudios/physx-rs/pull/98) Fix various issues
Expand Down
2 changes: 1 addition & 1 deletion physx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ physx-sys = { version = "0.4.10", path = "../physx-sys" }

enumflags2 = "0.6"
log = "0.4"
glam = "0.11"
glam = "0.12"
thiserror = "1.0.20"

[features]
Expand Down

0 comments on commit 6503057

Please sign in to comment.