Skip to content

Commit

Permalink
disable tls on rv32nommu
Browse files Browse the repository at this point in the history
  • Loading branch information
cleverca22 committed May 16, 2024
1 parent 4162697 commit c6193df
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkgs/development/compilers/gcc/common/configure-flags.nix
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,9 @@ let
# cc1: error: fp software completion requires '-mtrap-precision=i' [-Werror]
"--disable-werror"
]
++ lib.optionals (targetPlatform.config == "riscv32-unknown-linux-uclibc") [
"--disable-tls"
]
;

in configureFlags

0 comments on commit c6193df

Please sign in to comment.