Skip to content

Commit

Permalink
disable string table compression on illumos in development
Browse files Browse the repository at this point in the history
  • Loading branch information
davepacheco committed May 27, 2022
1 parent 236f2ac commit 095dfb6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .cargo/config
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,11 @@
[build]
rustdocflags = "--document-private-items"

# On illumos, use `-znocompstrtab` to reduce link time.
#
# Note that these flags are overridden by a user's environment variable, so
# things critical to correctness probably don't belong here.
[target.x86_64-unknown-illumos]
rustflags = [
"-C", "link-arg=-Wl,-znocompstrtab"
]

0 comments on commit 095dfb6

Please sign in to comment.