- Posts: 588
portaudio shows as trojan in avast?
- Hexperience
- Topic Author
- Offline
Less
More
10 Nov 2012 14:00 #2829
by Hexperience
There are 10 types of people in this world. Those that understand binary and those that don't.
portaudio shows as trojan in avast? was created by Hexperience
Hi guys, I'm just playing around with the code on windows. I've installed everything and built the emulator (which by the way is very cool and could be turned into a kind of "eepe").
Anyway, after installing all the exe's in the portaudio install show up as trojans in an avast anti-virus scan.
I assume they are false positives, but wanted to hear some confirmation before I re-install portaudio.
Cheers!
Dave
Anyway, after installing all the exe's in the portaudio install show up as trojans in an avast anti-virus scan.
I assume they are false positives, but wanted to hear some confirmation before I re-install portaudio.
Cheers!
Dave
There are 10 types of people in this world. Those that understand binary and those that don't.
Please Log in or Create an account to join the conversation.
- Hexperience
- Topic Author
- Offline
Less
More
- Posts: 588
10 Nov 2012 14:48 #2831
by Hexperience
There are 10 types of people in this world. Those that understand binary and those that don't.
Replied by Hexperience on topic portaudio shows as trojan in avast?
Just another quick question..
I get the following error when trying to make with target devo8
target/devo8/backlight.c:16:38: fatal error: libopencm3/stm32/f1/gpio.h: No such file or directory
Emulator builds fine.
Cheers... and again, a reply of "if you're not actually developing any code don't bother us with these kinds of questions" is fine. I'm just playing with it and trying to get my 'C' back.
I get the following error when trying to make with target devo8
target/devo8/backlight.c:16:38: fatal error: libopencm3/stm32/f1/gpio.h: No such file or directory
Emulator builds fine.
Cheers... and again, a reply of "if you're not actually developing any code don't bother us with these kinds of questions" is fine. I'm just playing with it and trying to get my 'C' back.
There are 10 types of people in this world. Those that understand binary and those that don't.
Please Log in or Create an account to join the conversation.
- vlad_vy
- Offline
Less
More
- Posts: 3333
10 Nov 2012 14:52 #2832
by vlad_vy
Replied by vlad_vy on topic portaudio shows as trojan in avast?
Please Log in or Create an account to join the conversation.
- Hexperience
- Topic Author
- Offline
Less
More
- Posts: 588
10 Nov 2012 15:04 #2833
by Hexperience
There are 10 types of people in this world. Those that understand binary and those that don't.
Replied by Hexperience on topic portaudio shows as trojan in avast?
I think I installed everything correctly. The emu_devo8 target builds with no errors. Did I miss something? I followed the instructions for building on Windows. I'm running win7.
I notice in the Linux instructions it talks about downloading libopencm3 but no mention of downloading it for the windows build.
Cheers
I notice in the Linux instructions it talks about downloading libopencm3 but no mention of downloading it for the windows build.
Cheers
There are 10 types of people in this world. Those that understand binary and those that don't.
Please Log in or Create an account to join the conversation.
- vlad_vy
- Offline
Less
More
- Posts: 3333
10 Nov 2012 15:06 #2834
by vlad_vy
Replied by vlad_vy on topic portaudio shows as trojan in avast?
Installing the build environment:
#################################
Building for ARM (on Linux):
I use the following script to install a cross-compiled gcc,
and the relevant libraries:
github.com/esden/summon-arm-toolchain
I recommend hacking the folloiwng variables in the summon-arm-toolchain script 1st. We have had
quite a bit of trouble with libopencm3 compatibility as they are not currently maintaining
backwards compatibility
LIBOPENCM3=libopencm3
LIBOPENCM3_GIT=83d62e9bfc79e03737c2f1977004bef6e6e20562
Building for ARM (on Windows):
Install the arm toolchain:
1) download and install YAGARTO (install into /mingw/stm32)
www.yagarto.de/#download
1a) add YAGARTO to your PATH (I like to put this into ~/.profile
so it is there each time I start msys)
export PATH=/mingw/stm32/bin:$PATH
2) download and unpack libopencm3
download here (rename to .zip if needed): github.com/libopencm3/libopencm3/zipball...f1977004bef6e6e20562
unzip into ~/src/
2a) Fix libopencm3 Makefile
modify 'DESTDIR=/usr/local' to 'DESTDIR=/mingw/stm32'
2b) Make and install libopencm3
make && make install
3) ensure python is installed. If not install it from here:
www.python.org/download/releases/2.7.3/
3a) Add python to your msys path:
export PATH="/c/<path to python>":$PATH
(e.g. export PATH="/c/Program Files/Python27":$PATH)
#################################
#################################
Building for ARM (on Linux):
I use the following script to install a cross-compiled gcc,
and the relevant libraries:
github.com/esden/summon-arm-toolchain
I recommend hacking the folloiwng variables in the summon-arm-toolchain script 1st. We have had
quite a bit of trouble with libopencm3 compatibility as they are not currently maintaining
backwards compatibility
LIBOPENCM3=libopencm3
LIBOPENCM3_GIT=83d62e9bfc79e03737c2f1977004bef6e6e20562
Building for ARM (on Windows):
Install the arm toolchain:
1) download and install YAGARTO (install into /mingw/stm32)
www.yagarto.de/#download
1a) add YAGARTO to your PATH (I like to put this into ~/.profile
so it is there each time I start msys)
export PATH=/mingw/stm32/bin:$PATH
2) download and unpack libopencm3
download here (rename to .zip if needed): github.com/libopencm3/libopencm3/zipball...f1977004bef6e6e20562
unzip into ~/src/
2a) Fix libopencm3 Makefile
modify 'DESTDIR=/usr/local' to 'DESTDIR=/mingw/stm32'
2b) Make and install libopencm3
make && make install
3) ensure python is installed. If not install it from here:
www.python.org/download/releases/2.7.3/
3a) Add python to your msys path:
export PATH="/c/<path to python>":$PATH
(e.g. export PATH="/c/Program Files/Python27":$PATH)
#################################
Please Log in or Create an account to join the conversation.
- Hexperience
- Topic Author
- Offline
Less
More
- Posts: 588
10 Nov 2012 15:08 #2835
by Hexperience
There are 10 types of people in this world. Those that understand binary and those that don't.
Replied by Hexperience on topic portaudio shows as trojan in avast?
DOH!
I completely missed the break just before "Building For ARM (on Windows)"
My appolgies... and thanks very much.
I completely missed the break just before "Building For ARM (on Windows)"
My appolgies... and thanks very much.
There are 10 types of people in this world. Those that understand binary and those that don't.
Please Log in or Create an account to join the conversation.
Time to create page: 0.032 seconds
- Home
- Forum
- General
- General Discussions
- portaudio shows as trojan in avast?