Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: m-labs/artiq
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8eeb6ea1b999
Choose a base ref
...
head repository: m-labs/artiq
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9c3394794e68
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Oct 7, 2016

  1. runtime: discard unnecessary sections.

    whitequark committed Oct 7, 2016
    Copy the full SHA
    4d790b4 View commit details
  2. runtime: cap log level at debug.

    whitequark committed Oct 7, 2016
    Copy the full SHA
    9c33947 View commit details
Showing with 2 additions and 1 deletion.
  1. +1 −1 artiq/runtime.rs/Cargo.toml
  2. +1 −0 artiq/runtime/runtime.ld
2 changes: 1 addition & 1 deletion artiq/runtime.rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ path = "src/lib.rs"
std_artiq = { path = "libstd_artiq" }
lwip = { path = "liblwip", default-features = false }
fringe = { version = "= 1.1.0", default-features = false, features = ["alloc"] }
log = { version = "0.3", default-features = false }
log = { version = "0.3", default-features = false, features = ["max_level_debug"] }
log_buffer = { version = "1.0" }
byteorder = { version = "0.5", default-features = false }

1 change: 1 addition & 0 deletions artiq/runtime/runtime.ld
Original file line number Diff line number Diff line change
@@ -80,5 +80,6 @@ SECTIONS
/DISCARD/ :
{
*(.eh_frame)
*(.gcc_except_table)
}
}