e.g. Undefined symbols for architecture x86_64:
"_quarkhash", referenced from:
_quarkcoin_test in sgminer-quarkcoin.o
_quarkcoin_regenhash in sgminer-quarkcoin.o
_scanhash_quarkcoin in sgminer-quarkcoin.o
See: http://clang.llvm.org/compatibility.html#inline
Pushed the wrong kernel previously and I changed the TC to not override
the intensity. As with scrypt, intensity will calculate TC only if TC is
not set.
Moved the develop code to master. Moving forward all updates will be
done on master unless it's work on a major feature.
This update contains all previous develop code as well as a few new ones
that weren't pushed yet:
* Added neoscrypt compatibility for xintensity/rawintensity
* Neoscrypt now uses correct TC if not specified or set to 0
* Reworked the application of pool settings on algorithm switch which
should resolve TC/Intensity changes between algos such as X11 and
neoscrypt
Added the ability to have users run commands, reboot the system or quit sgminer based on system events. These events can be defined and placed throughout the sgminer source. So far the events are: "gpu_sick", "gpu_dead" and "idle". I will document further shortly. Config example available here: http://pastebin.com/2rRv3EzH
A typo when checking the algorithm used was causing the diff1targ value not to evaluate properly in test_nonce(). This caused the test to fail and increase HW errors. Thanks to Zuikkis for pointing that out!
The API and UI functions to change intensity would update the gpu
settings directly without updating the config option strings. This
resulted in the intensity updates not saving in config files. This
update should resolve that problem.
Also added API functions to change xintensity and rawintensity.
Improper use of strtok() on the original config string instead of a copy
resulted in the worksize being cut down to GPU0's worksize only after
first use.
Changed line 61 to "git clone git://github.com/sgminer-dev/sgminer.git" (Updated to the new address "sgminer-dev" instead of "veox", and changed to "git://" instead of "git@" because it is way easier for newbies to download it that way).
Also added a warning at line 75 that users MUST download the ADL_SDK version 6.0 because v7.0 won't work with SGMiner 4.2.2
Reworked how the config writer works to properly save the config file.
Sometimes settings would get lost in profiles.
Also changed algorithm switch to only perform a soft reset and lowered
the verbosity of the algorithm switcher.