Skip to content

Instantly share code, notes, and snippets.

View TimMoore's full-sized avatar

Tim Marcus Moore TimMoore

View GitHub Profile
[17:17:07] ~/Projects/lightbend-markdown (master=) $ sbt "release cross"
[info] Loading settings for project global-plugins from build.sbt ...
[info] Loading global plugins from /Users/tmoore/.sbt/1.0/plugins
[info] Loading settings for project lightbend-markdown-build from plugins.sbt ...
[info] Loading project definition from /Users/tmoore/Projects/lightbend-markdown/project
[info] Loading settings for project lightbend-markdown from version.sbt,build.sbt ...
[info] Set current project to lightbend-markdown (in build file:/Users/tmoore/Projects/lightbend-markdown/)
[WARN] [10/25/2019 17:17:25.293] [main] [ManifestInfo(akka://sbt-web)] Detected possible incompatible versions on the classpath. Please note that a given Akka version MUST be the same across all modules of Akka that you are using, e.g. if you use [2.5.17] all other modules that are released together MUST be of the same version. Make sure you're using a compatible set of libraries.Possibly conflicting versions [2.5.4, 2.5.17] in libraries [akka-pe
@TimMoore
TimMoore / wavecuepoint.c
Last active May 2, 2023 23:20 — forked from dhilowitz/wavecuepoint.c
This code reads a .wav file and a text file containing marker locations (specified as frame indexes, one per line) and creates a new .wav file with embedded cue points for each location. The code is standard, portable C.
//
// wavecuepoint.c
// Created by Jim McGowan on 29/11/12.
// Turned into command-line utility by David Hilowitz on 19/11/16.
// [email protected]
// [email protected]
//
// This function reads a .wav file and a text file containing marker locations (specified as frame indexes, one per line)
// and creates a new .wav file with embedded cue points for each location. The code is standard, portable C.
//
@TimMoore
TimMoore / build-log.txt
Created October 19, 2022 06:22
build from max-package-template generating x86_64 external object on arm64 machine
tmoore@Tims-MBP build % cmake -G Xcode ..
-- The C compiler identification is AppleClang 14.0.0.14000029
-- The CXX compiler identification is AppleClang 14.0.0.14000029
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
@TimMoore
TimMoore / trace-log.txt
Created October 19, 2022 07:00
cmake --trace-expand -G Xcode ..
This file has been truncated, but you can view the full file.
Last login: Wed Oct 19 13:47:06 on ttys005
tmoore@Tims-MBP build % cmake --trace-expand -G Xcode ..
Running with expanded trace output on.
/Users/tmoore/Projects/wavefile/CMakeLists.txt(1): cmake_minimum_required(VERSION 3.19 )
/Users/tmoore/Projects/wavefile/CMakeLists.txt(3): set(CMAKE_OSX_ARCHITECTURES x86_64;arm64 )
/Users/tmoore/Projects/wavefile/CMakeLists.txt(5): string(REGEX REPLACE (.*)/ THIS_FOLDER_NAME /Users/tmoore/Projects/wavefile )
/Users/tmoore/Projects/wavefile/CMakeLists.txt(6): project(wavefile )
/opt/homebrew/Cellar/cmake/3.24.2/share/cmake/Modules/CMakeDetermineSystem.cmake(35): if(CMAKE_HOST_UNIX )
/opt/homebrew/Cellar/cmake/3.24.2/share/cmake/Modules/CMakeDetermineSystem.cmake(36): find_program(CMAKE_UNAME uname /bin /usr/bin /usr/local/bin )