mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 08:34:50 +00:00
8deca0d420
- Added `guiModule` option that accepts "fltk", "ntk", "zest", or "off" - Split FLTK dependencies from NTK dependencies - Added support for building the FLTK gui - Added support for building the Zyn-Fusion (zest) gui - Added new derivation for the Zest UI framework (local to zynaddsubfx) It's not yet designed to be used outside of zynaddsubfx, but it may be in the future - Added flags for all optional features - Added & disabled `dssiSupport` by default - Disabled `lashSupport` by default Slows down startup looking for LASH server if not running - Added & enabled `portaudioSupport` by default Cross platform audio library that uses ALSA/JACK on Linux. Supports multiple audio streams without needing JACK. - Enabled tests - Removes nico202 as maintainer, as requested in code review
14 lines
462 B
Diff
14 lines
462 B
Diff
diff --git a/mruby/tasks/toolchains/gcc.rake b/mruby/tasks/toolchains/gcc.rake
|
|
index f370c0ab..e5ab9f60 100644
|
|
--- a/mruby/tasks/toolchains/gcc.rake
|
|
+++ b/mruby/tasks/toolchains/gcc.rake
|
|
@@ -22,7 +22,7 @@ MRuby::Toolchain.new(:gcc) do |conf, _params|
|
|
end
|
|
|
|
conf.linker do |linker|
|
|
- linker.command = ENV['LD'] || 'gcc'
|
|
+ linker.command = 'gcc'
|
|
linker.flags = [ENV['LDFLAGS'] || %w()]
|
|
linker.libraries = %w(m)
|
|
linker.library_paths = []
|