Click here to Skip to main content
15,889,216 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Display tooltip for each listbox item on combobox using ctooltipctrl Pin
Member 1031536525-Nov-18 21:37
professionalMember 1031536525-Nov-18 21:37 
GeneralRe: Display tooltip for each listbox item on combobox using ctooltipctrl Pin
Victor Nijegorodov25-Nov-18 22:36
Victor Nijegorodov25-Nov-18 22:36 
GeneralRe: Display tooltip for each listbox item on combobox using ctooltipctrl Pin
Member 1031536526-Nov-18 2:03
professionalMember 1031536526-Nov-18 2:03 
AnswerRe: Display tooltip for each listbox item on combobox using ctooltipctrl Pin
_Flaviu23-Nov-18 2:53
_Flaviu23-Nov-18 2:53 
GeneralRe: Display tooltip for each listbox item on combobox using ctooltipctrl Pin
Member 1031536525-Nov-18 21:32
professionalMember 1031536525-Nov-18 21:32 
GeneralRe: Display tooltip for each listbox item on combobox using ctooltipctrl Pin
_Flaviu25-Nov-18 23:04
_Flaviu25-Nov-18 23:04 
Questiongcc configure for hardware Pin
Vaclav_20-Nov-18 6:50
Vaclav_20-Nov-18 6:50 
AnswerRe: gcc configure for hardware Pin
leon de boer20-Nov-18 18:17
leon de boer20-Nov-18 18:17 
Most GCC versions of GCC do processor families

If you are playing around with the Raspberry Pi again

BCM2835 Pi, Pi zero etc flag is -mcpu=arm1176jzf-s
BCM2836 Pi 2 flag is -mcpu=cortex-a7
BCM2837 Pi 3 flag is -mcpu=cortex-a53

If you want them with hard float points it's longer
BCM2835 Pi, Pi zero etc flag is -mcpu=arm1176jzf-s -mfpu=vfp -mfloat-abi=hard
BCM2836 Pi 2 flag is -mcpu=cortex-a7 -mfpu=neon -mfloat-abi=hard
BCM2837 Pi 3 flag is -mcpu=cortex-a53 -mfpu=neon -mfloat-abi=hard

If you have a different CPU it's usually -mcpu="ARM CPU ID"

Finally version 6 or maybe 7 GCC is current version on Raspbian Stretch
sudo apt-get update your version OR download new version sudo apt-get install gcc

If you are Crossing from Windows/MAC/other linux variants the newest ARM CORP version is always here
GNU Toolchain | GNU-RM Downloads – Arm Developer[^]

On version 6 and above GCC you can now ask for supported processors with
gcc -mcpu=list
It spits something like this
Quote:
arm-none-eabi-gcc: note: valid arguments to '-mcpu=' are: arm1020e arm1020t arm1022e arm1026ej-s arm10e arm10tdmi arm1136j-s arm1136jf-s arm1156t2-s arm1156t2f-s arm1176jz-s arm1176jzf-s arm2 arm250 arm3 arm6 arm60 arm600 arm610 arm620 arm7 arm70 arm700 arm700i arm710 arm7100 arm710c arm710t arm720 arm720t arm740t arm7500 arm7500fe arm7d arm7di arm7dm arm7dmi arm7m arm7tdmi arm7tdmi-s arm8 arm810 arm9 arm920 arm920t arm922t arm926ej-s arm940t arm946e-s arm966e-s arm968e-s arm9e arm9tdmi cortex-a12 cortex-a15 cortex-a15.cortex-a7 cortex-a17 cortex-a17.cortex-a7 cortex-a32 cortex-a35 cortex-a5 cortex-a53 cortex-a57 cortex-a57.cortex-a53 cortex-a7 cortex-a72 cortex-a72.cortex-a53 cortex-a73 cortex-a73.cortex-a35 cortex-a73.cortex-a53 cortex-a8 cortex-a9 cortex-m0 cortex-m0.small-multiply cortex-m0plus cortex-m0plus.small-multiply cortex-m1 cortex-m1.small-multiply cortex-m23 cortex-m3 cortex-m33 cortex-m33+nodsp cortex-m4 cortex-m7 cortex-r4 cortex-r4f cortex-r5 cortex-r52 cortex-r7 cortex-r8 ep9312 exynos-m1 fa526 fa606te fa626 fa626te fa726te fmp626 generic-armv7-a iwmmxt iwmmxt2 marvell-pj4 mpcore mpcorenovfp native strongarm strongarm110 strongarm1100 strongarm1110 xgene1 xscale

-mfpu=list
Quote:
arm-none-eabi-gcc: note: valid arguments to '-mfpu=' are: auto crypto-neon-fp-armv8 fp-armv8 fpv4-sp-d16 fpv5-d16 fpv5-sp-d16 neon neon-fp-armv8 neon-fp16 neon-vfpv3 neon-vfpv4 vfp vfp3 vfpv2 vfpv3 vfpv3-d16 vfpv3-d16-fp16 vfpv3-fp16 vfpv3xd vfpv3xd-fp16 vfpv4 vfpv4-d16

In vino veritas


modified 21-Nov-18 0:45am.

GeneralRe: gcc configure for hardware Pin
Vaclav_21-Nov-18 4:44
Vaclav_21-Nov-18 4:44 
GeneralRe: gcc configure for hardware Pin
leon de boer21-Nov-18 5:26
leon de boer21-Nov-18 5:26 
GeneralRe: gcc configure for hardware Pin
Vaclav_21-Nov-18 7:12
Vaclav_21-Nov-18 7:12 
GeneralRe: gcc configure for hardware Pin
leon de boer21-Nov-18 12:11
leon de boer21-Nov-18 12:11 
GeneralRe: gcc configure for hardware Pin
Vaclav_21-Nov-18 15:01
Vaclav_21-Nov-18 15:01 
GeneralRe: gcc configure for hardware Pin
Vaclav_21-Nov-18 15:13
Vaclav_21-Nov-18 15:13 
GeneralRe: gcc configure for hardware Pin
leon de boer22-Nov-18 5:10
leon de boer22-Nov-18 5:10 
GeneralRe: gcc configure for hardware Pin
Vaclav_22-Nov-18 6:26
Vaclav_22-Nov-18 6:26 
GeneralRe: gcc configure for hardware Pin
Richard Andrew x6422-Nov-18 10:08
professionalRichard Andrew x6422-Nov-18 10:08 
GeneralRe: gcc configure for hardware Pin
Vaclav_22-Nov-18 17:28
Vaclav_22-Nov-18 17:28 
GeneralRe: gcc configure for hardware Pin
leon de boer22-Nov-18 21:48
leon de boer22-Nov-18 21:48 
GeneralRe: gcc configure for hardware Pin
Vaclav_26-Nov-18 4:09
Vaclav_26-Nov-18 4:09 
GeneralRe: gcc configure for hardware Pin
Vaclav_26-Nov-18 6:54
Vaclav_26-Nov-18 6:54 
GeneralRe: gcc configure for hardware Pin
Vaclav_29-Nov-18 17:11
Vaclav_29-Nov-18 17:11 
GeneralRe: gcc configure for hardware Pin
Vaclav_30-Nov-18 4:44
Vaclav_30-Nov-18 4:44 
Questionproblems with pointer to struct Pin
Mohammad Ali Bahar18-Nov-18 23:15
Mohammad Ali Bahar18-Nov-18 23:15 
AnswerRe: problems with pointer to struct Pin
CPallini19-Nov-18 0:20
mveCPallini19-Nov-18 0:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.